*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
}

h1{
    text-align: center;
    font-size: 50px;
}

a,
button{
    display: block;
    background-color: red;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    color: black;
    position: absolute;
    border-radius: 50%;
    height: 105px;
    width: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bolder;
}


#confirmBtn{
    left: 50%;
    top: 75%;
    transform: translateX(-50%);
    height: 250px;
    width: 250px;
    font-size: 50px;
}
#resetBtn{
    bottom: 25px;
    left: 25px;
}
#quitBtn{
    right: 0;
    bottom: 25px;
    right: 25px;
}

.main-game{
    width: 90%;
    margin: 0 auto;
    padding: 50px 25px
}


.main-game .img-container{
    height: fit-content;
}

form,
.stats{
    width: fit-content;
    margin: 0 auto;
}

.stats p{
    padding-block: 25px;
    font-size: 25px;
}

.img-container{
    height: 800px;
    padding-block: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container img{
    min-width: 325px;
    width: 25%;
}


form{
    margin-top: 75px;
}

form .formInput{
    height: 35px;
    width: 175px;
}

form .formBtn{
    height: 35px;
    width: 75px;
    background-color: blue;
    border: 0;
    color: white;
    font-weight: bold;  
}

form .formInput:focus{
    outline: 1px solid blue;
}

#form .formInput:hover,
a:hover,
button:hover{
    opacity: 0.5;
}