body{
    background-color: antiquewhite ;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    grid-template-rows:  auto auto 1fr auto;

}

.header{
    padding: 2px;
    margin-top: 10px;
    font-weight: bolder;
    font-size:5vw;
    color:rgb(216, 148, 59);
    text-align: center;
    
}


.vertical-line{
    margin-top: 50px;
    width: 3px;
    height: 150px;
    background-color: rgb(226, 180, 121);
    
}

.game{
    display: flex;
    justify-content: center;
}



.footer{
    /* padding: 2px; */
    text-align: center;
    background-color:rgb(215, 164, 97);
    a{
        /* margin-top: 0px; */
        text-decoration: none;
        color: black;
        font-weight: normal;
    }
}

.player1,.player2{
    margin-top: 50px;
    padding: 50px;
    font-size: 30px;
}

.button{
    display: flex;
    justify-content: center;
    margin-top: 30px;

}

.btn{
    width: 100px;
    height: 50px;
    margin: 5px;
    border-radius: 10px;
    background-color: rgb(225, 177, 115);
    border: none;    
    transition: transform 0.3s ease;
}
.btn:hover{
    transform: scale(1.1);
}
