@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

:root{
    --yellow:   #F4D04E;
    --gray-950: #111111;
    --gray-500: #6B6B6B;
    --white:    #FFFFFF;
  }

  body {
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }

  .container {
    background-color: var(--white);
    width: 384px;
    height: 522px;
    padding: 20px;
    border-radius: 10px;
    border: solid 1px #111111;
    box-shadow: 8px 8px 0px 0px #111111;
  }

  img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .yellow.background {
    background-color: var(--yellow);
    padding: 15px 25px;
    margin-bottom: 12px;
    width: fit-content;
    border-radius: 5px;
  }

  h2 {
    font-size: 14px;
    line-height: 150%;
    line-height: 0px;
  }

  h3{
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    font-weight: 500;
    
   }

   h1 {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
   }

   p{
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    font-weight: 500;
    color: var(--gray-500);
   }

   .speaker {
    display: flex;
    /* height: 100vh; */
    /* justify-content: center; */
    align-items: center;

   }
   
   .speaker img {
    max-width: 32px;
    margin:10px;
   }
   
   h1:hover {
    color: #f4d04e;
  }

  @media screen and (max-width: 420px) {
    .container {
      width: 327px;
    }