.tttgrid{
    align-items: center;
}

.title{
    text-align: center;

}

.container{
    width: 60%;
    min-width: 500px;
    padding: 40px 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border: 1px solid rgb(49, 231, 49);
}


.scores{
    display: flex;
    justify-content: space-around;

}
.scores p{
    display: inline;
}

.weapons{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;

}

.weapons button{
    border: none;
    font-size: 50px;
    height: 100px;
    width: 100px;
    outline: none;
    cursor: pointer;
    margin-top: 10%;
}

.weapons button:hover{
    border: 5px solid rgb(49, 231, 49);
    border-radius: 50%;
}

.details{
    margin-top: 30px;
    text-align: center;

}

.scores, .details{
    font-size: 15px;
    font-weight: 400;
}

#reset{
    background-color: black;
    color: rgb(49, 231, 49);
    padding: 8px;
    border: none;
    font-size: 20px;
    margin-left: 1em;
    cursor: pointer;
}

#reset:hover{
    background-color: rgb(49, 231, 49);
    color: black;
}

.footer{
    margin-top: 35%;
}