body, html {
    width: 100vw;
    /* height: 1024px; */
    margin: 0;
    padding: 0;
  }
  
  .main {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100vw;  /* Menetapkan lebar tetap 1024px */
    height: 1024px;
    margin: 0 auto;  /* Menjaga konten di tengah */
    background-color: white;
    color: black;
  }

  .greeting-container h1 {
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    color: #06373a;
  }

  .main-profile {
    display: flex;
    flex-direction: column;
  }
  
  .main-profile img {
    width: 250px;
    justify-content: center;
  }

  .main-link a {
    box-shadow: 0px 4px 10px #903b3850;
  }
  .main-link a:hover {
    background-color: #eacfaf;
    color: #06373a;
    border: 2px solid #02373a;
    box-shadow: 0px 6px 15px #903b3880;
  }

  .button-link {
    margin-top: 15px;
    width: 400px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(211,154,82,255);
    border: 2px solid #02373a38 ;
    border-radius: 10px;
     
  }
  

  .button-link-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
  }
  .button-link-img svg {
    width: 30px;
    height: 30px;
  }
  .button-link-img img {
    background-color: transparent;
    width: 50px;
    height: 50px;
  }


  a {
    text-decoration: none;
    color: white;
  }
  .button-link-text {
    display: flex;
    font-family: "Patua One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    width: 350px;
    justify-content: center;
    align-items: center;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    font-size: 1rem;
  }

  @media screen and (max-width: 768px) {
    
}


@media screen and (max-width: 480px) {
    .main {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 100vw;  /* Menetapkan lebar tetap 1024px */
        height: 1024px;
        margin: 0 auto;  /* Menjaga konten di tengah */
        background-color: white;
        color: black;
      }
    
      .greeting-container h1 {
        text-align: center;
        font-size: 1.3rem;
        margin-left: 10px;
        margin-right: 10px;
        color: #06373a;
      }
    
      .main-profile {
        display: flex;
        flex-direction: column;
      }
      
      .main-profile img {
        width: 250px;
        justify-content: center;
      }
    
      .main-link a {
        box-shadow: 0px 4px 10px #903b3850;
      }
      .main-link a:hover {
        background-color: #eacfaf;
        color: #06373a;
        border: 2px solid #02373a;
        box-shadow: 0px 6px 15px #903b3880;
      }
    
      .button-link {
        margin-top: 15px;
        width: 20rem;
        height: 50px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: rgba(211,154,82,255);
        border: 2px solid #02373a38 ;
        border-radius: 10px;
         
      }
      
    
      .button-link-img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
      }
      .button-link-img svg {
        width: 30px;
        height: 30px;
      }
      .button-link-img img {
        background-color: transparent;
        width: 50px;
        height: 50px;
      }
    
    
      a {
        text-decoration: none;
        color: white;
      }
      .button-link-text {
        display: flex;
        font-family: "Patua One", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.6rem;
        width: 350px;
        justify-content: center;
        align-items: center;
      }
    
      footer {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        font-size: 1rem;
      }
}