* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: poppins, sans-serif;
}
body{
    height: 100%;
    width: 100%;
    background: #262a2f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#container{
    width: 90%;
    max-width: 400px;
    padding: 25px 35px;
    background: #fff;
    border-radius: 10px;
}
#container p{
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}
#container input{
    width: 100%;
    height: 50px;
    border: 1px solid #494eea;
    outline: 0;
    padding: 10px;
    margin: 10px 0 20px;
    border-radius: 5px;
}
#container .Generate{
    width: 100%;
    height: 50px;
    background: #494eea;
    color: #fff;
    border: 0;
    outline: 0;
    margin-bottom: 10px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}
#container .Generate:hover {
    background: #3a3bd4;
    cursor: pointer;
}

#container .Download{
    width: 100%;
    height: 50px;
    background: rgb(67, 196, 181);
    color: white;
    border: 0;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}
#container .Download:hover {
    background: rgb(55, 170, 155);
    cursor: pointer;
}

.imgbox{
    width: 200px;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
.imgbox img{
    width: 100%;
    padding: 10px;
}
.imgbox.show-img{
    max-height: 300px;
    margin: 10px auto;
    border: 1px solid #d1d1d1;
}

@media (max-width: 480px) {
    #container {
        padding: 20px;
    }
    .imgbox {
        width: 150px;
    }
}




    
