*{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

#container{
    width: 100%;
    height: 100vh;
    background:linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subbut{
    padding: 0.5vmax 3vmax;
    font-size:1.5vmax;
    border-radius: 20px;
    border: none;
    border: 1px solid black;
    cursor: pointer;
}

.popup {
    top : -50%;
    transform: scale(0.1);
    width: 25%;
    min-width: 350px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1.5vmax;
    position: absolute;
    background-color: whitesmoke;
    border-radius: 15px;
    padding: 0.5vmax;
    text-align: center;
    visibility: hidden;
    transition: top 0.5s , transform 0.5s , visibility 0.5s ease-in-out;

}


.popup img{
    height: 8vmax;
    max-height: 200px;
    margin-top: -4vmax;
    filter:drop-shadow(0px 3px 3px rgb(5, 226, 19)); 
}

.popup h3{
    font-size: 2vmax;
}

.popup p{
    font-size: 1vmax;
}

.popup button{
    padding: 0.5vmax 1.3vmax;
    background-color: rgb(48, 169, 48);
    border: none;
    outline: none;
    font-size: 1vmax;
    border-radius: 10px;
    cursor: pointer;

}

.adding {
    visibility: visible;
    transform: scale(1);
    top: 50%;
    transform: translate(0%,-50%);
}

