* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    position: absolute;
}

header{
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

#index img {
    width: 82vw;
    height: 23vh;
    justify-content: center;
    position: relative;
}

main{
    margin-top: 5rem;
    margin-bottom: 7rem;
    display: grid;
    grid-template-rows: 0fr, 0fr;
    row-gap: 4rem;
    text-align: center;
    justify-content: center;
}

button{
    padding: 1.5rem;
    background-color: rgba(209, 182, 155, 0.81);
    color: rgb(35, 31, 25);
    border: whitesmoke;
    border-radius: 20px;
    transition: background-color 0.2s ease-in-out;
}

button:hover{
    background-color: rgb(244, 211, 177);
}

footer{
    padding: 2rem;
    bottom: 0;
    width: 100vw;
    height: 10%;
    background-color: #392a48;
    position: relative;
}

footer h2 {
    color: white;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 0;
    padding-left: 0;
}

@media screen and (min-width: 1500px) {
    #index img {
            width: 50vw;
            height: 47vh;
            justify-content: center;
            position: relative;
        }

}

#gameContainer {
    position: relative;
}

#gameBox {
    position: relative;
    z-index: 1;
}

.dialogBox {
    position: absolute;
    background-color:bisque;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    padding: 20px;
    background-color: bisque;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 20px;
    z-index: 999;
}
