@import url('https://fonts.googleapis.com/css2?family=Josefin Sans:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
    background-color: white;
  }

  #centerImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 10px solid #febd57;
    border-radius: 50px;
    
  }

  #logo {
    float: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
  }
  
  h1 {
    font-family: "Josefin Sans", serif;
    font-size: 400%;
    font-weight: 400;
    font-style: normal;
    color: black;
    text-align: center;
  }

  h2 {
    font-family: "Josefin Sans", serif;
    font-size: 300%;
    font-weight: 400;
    font-style: normal;
    text-align: center;
  }

  #mainParagraph {
    float: right;
    color: black;
    font-family: "Josefin Sans", serif;
    font-size: 200%; /* Min 16px, scales with 2vw, max 24px */
    font-weight: 400;
    font-style: normal;
  }
  
  p {
    margin-left: 10%;
    margin-right: 10%;
    color: black;
    font-family: "Josefin Sans", serif;
    font-size: 200%;
    font-weight: 400;
    font-style: normal;
    text-align: center;
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
  }

  li {
    margin-top: 25px;
    float: right;
    font-family: "Josefin Sans", serif;
    font-size: 36px;
    padding-inline: 7px;
  }

  h3 {
    float: left;
    font-family: "Josefin Sans", serif;
    font-weight: 400;
    font-size: 200%;
    padding-inline: 60px;
    font-style: normal;
  }

  li a {
    display: block;
    color: black;
    text-align: center;
    padding: 18px 35px;
    text-decoration: none;
    border: 5px solid #febd57;
    border-radius: 5px;
  }
  
  /* Change the link color to #111 (black) on hover */
  li a:hover {
    background-color: #febd57;
    color: white;
  }

  .audioplayer {
    margin-left: 40%;
  }
  
  .container {
    display: flex;
    align-items: center;
    max-width: 85%;
    margin: auto;
  }

  .image {
    flex: 1;
    padding: 10px;
  }

  .image img {
    max-width: 500px;
    height: auto;
    display: block;
  }

.text {
    flex: 1;
    padding: 10px;
  }

  #insta {
    border: 5px solid #febd57;
    border-radius: 30px;
  }

  @media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .text {
        width: 150%;
        font-size: 12px;
    }
    .image img {
        width: clamp(20rem, 40vw, 35rem);
    }
    #logo {
      width:50%;
    }
    #insta {
      width: 30%;
    }
    li {
      float: left;
      font-family: "Josefin Sans", serif;
      font-size: 28px;
      margin-top: 10px;
      padding-inline: 3px;
    }
    .audioplayer {
      margin-left: 5%;
    }
}