#popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    height: auto;
    min-height: 10rem;
    max-height: 15rem;
    background: #363040;
    border-radius: 10px;
    margin: 10rem auto;
    font-family: 'Nunito';
    padding: 1rem;
}

#popup h1 {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: clamp(2rem, 5vw, 3rem);
    color: #FFFFFF;
    width: 50%;
    text-align: center;
}

#popup img {
    width: clamp(6rem, 10vw, 8.3rem);
}

@media (max-width: 600px){
  #popup{
    margin: -2rem auto 0rem auto;
    flex-direction: column;
    gap: 1rem;
    min-height: 17rem;
    max-height: 20rem;
    overflow: hidden;
  }  

  #popup h1{
    width: 80%;
  }
} 