* {
    box-sizing: border-box;
}

header {
    width: 100%;
    background-color: rgb(183, 179, 179);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: fit-content;
   
}
  


.buttonstn {
    height: fit-content;
    width: fit-content;
    padding: 15px;
    font-size:1,5rem;
    border-radius: 30px;
    background-color: lightgreen;
    display: flex;
    justify-content:center;
    align-content:center;
    align-items:center;
    align-self:center;

}

body {
    background-color: lightblue;
    margin: 0;
}
h1 {
    font-family: "Permanent Marker", cursive;
    text-align: center;
    text-decoration: underline;
    width: fit-content;
}
.mark {
    color: black;
    width: max-content;
}
.button1 {
    color: green;
    font-size: 2rem;

}
.button2 {
    color: yellow;
    font-size: 2rem;
}
.button3 {
    color: red;
    font-size: 2rem;

}
.settings {
    display:flex;
    flex-direction: column;
    gap: 15px;
    width: max-content; 
    height: fit-content;
    transform: translateY(-50%);
    margin-top: 250px;
    padding: 15px;

    
}
.settings button {
    border-radius: 10px;
    padding: 15px;
    background-color: darkgrey;
}
#everything {
    display:flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

#gameContainer{
    text-align: center;
}
#gameBoard{
   border: 3px solid black;
   
}
#scoreText{
    font-family: "Permanent Marker", cursive;
    font-size: 100px;
}
#resetBtn{
    font-family: "Permanent Marker", cursive;
    font-size: 22px;
    width: 100px;
    height: 50px;
    border: 4px solid;
    border-radius: 15px;
    cursor: pointer;
}