#grid {
    background-color: #AB9B90;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 24px 40px;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px; 
}

.col1 input,
.col2 input {
    width: 100%;
}



.submit-btn {
    grid-column: 1 / -1;
    margin-top: 10px;   
}




.container{
    display: flex;
    gap: 100px;
    padding-bottom: 20px;
}

.col1{
    width: 200px;
    display: flex;
    flex-direction: column;
}

.col2{
    width: 200px;
    display: flex;
    flex-direction: column;       
}

body{
    background-image: url(images/backnew.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

header h1{
    font-family: 'Poppins', sans-serif;
    color: #829D7E;
    font-size: 4em;
    text-align: right;
    padding-right: 200px;
    padding-top: 200px;
}

#madlib-questions {
    display: block;
}

#top{
    display: flex;
    width: 900px;
    margin: 0 auto 800px 800px;
    display: flex;
    justify-content: flex-end;


}

#bottom{
    background-image: url(images/newres.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}


h1{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 4em;
    text-align: right;
    padding-right: 200px;
    padding-top: 200px;
}

p{
    font-family: 'Poppins', sans-serif;
    color: #76563F;
    line-height: 3em;
    font-size: 1.25em;
}

.results{
    width: 900px;
    height: 400px;
    padding: 60px;
    background-color: #DDD6BE;
    border-radius: 10px;
    margin: 0 auto;
}

button{
    background-color: #FFFA64;
    padding: 10px;
    border-radius: 10px;
}

button:hover{
    background-color: #829D7E;
}

form{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    line-height: 3rem;
}

/* input{
    width: 150px;
    height: 35px;
} */

main section{
    transition: all .5s ease;
}

html{
    scroll-behavior: smooth;
}