*{
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #8FBC8F;
}

h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

#btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 60px;
    border-radius: 15px;
    background-color: #FFF8DC;
    box-shadow: 0 0 60px rgba(1, 1, 1, 0.1);
    margin-top: 30px;
    width: 90%;
    max-width: 1200px;
    height: 300px;
    max-height: 400px;
    box-sizing: border-box;
    transition: 0.3s;
}


@media(max-width: 1200px){
    .container{
        max-width: 1000px;
        max-height: 400px;

    }
    #btn{
        padding: 10px 15px;
        margin-bottom: 300px;
    }
}

@media(max-width: 768px){
    #btn{
        padding: 10px 15px;
        margin-bottom: 400px;
    }
    .container{
        max-width: 700px;
        max-height: 350px;
    }
}

@media(max-width: 480px){
    #btn{
        padding: 10px 15px;
        margin-bottom: 200px;
    }
    .container{
        max-width: 400px;
        max-height: 200px;
    }

    /* h1, h2{
        font-size: 1.5rem;
    } */
}


