
@media (min-width: 768px) {
  #main {
    max-width: 600px;
    padding: 40px;
  }

  .links {
    max-width: 350px;
    height: 60px;
    font-size: 1.1rem;
  }

  img {
    width: 120px;
    height: 120px;
  }

  h2, h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .attribution {
    font-size: 0.9rem;
    margin-top: 40px;
    padding: 0 20px;
  }
}
      @font-face {
        font-family:customfont ;
        src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
      }
      .attribution  {
  font-size: 0.75rem;
  text-align: center;
  color: white;
  margin-top: 20px;
  padding: 0 10px;
  line-height: 1.4;
}

      
      .attribution a {
        color: hsl(233, 20%, 92%);
        text-decoration: none;
       
      }
      *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html,body{
        height:100%;
        width:100%;
      }
      body{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: customfont;
       background-color:  rgba(0, 0, 0, 0.95);
      }
      #main{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 650px;
        width: 90%;
        margin: 60px auto;
        max-width: 375px;
        background-color:hsl(0, 0%, 8%);
        color: white;
        padding-bottom: 25px;
        border-radius: 10px;
        margin-top: 60px;
      }
      img{
        height: 100px;
        width: 100px;
        border-radius: 50%;
        margin-top: 35px;
      }
      h3{
        color: hsl(75, 94%, 57%);
        font-size: 15px;
        margin: -10px 0 0 0 ;
      }
      h2{
        font-size: 25px;
      }
      p{
        font-size: 14px;
        color:rgb(182, 177, 177);
      }
     .links{
        background-color: hsl(0, 0%, 20%);
        height: 50px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: flex;           
        justify-content: center;    
        align-items: center; 
        border-radius: 8px; 
         transition: all 0.3s ease; 
        
     }
     .links:hover{
      background-color:hsl(75, 94%, 57%) ;
      color: black;
      cursor: pointer;
      transform: scale(1.05);              /* optional: slight zoom effect */
      transition: all 0.3s ease; 
     }
     .links a{
       text-decoration: none;
        color: white;
        
     }
     .links:hover a {
  color: black;
}
    