* {
    padding: 0;
    margin: 0;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

body{
    background-image: url("background.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 2000px;
    background-color: rgba(0, 0, 0, 0.3);
}

.square {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    height:110px;
    width:110px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.1s;
    font-size: 50px;
    border-radius: 5px;
}

.board{
    display: flex;
    flex-wrap: wrap;
    height: 342px;
    width: 342px;
}

.status{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background-color: teal;
    transition: background-color 0.1s;
    border-radius: 10px;
}

.main-parent{
    display: flex;
    justify-content: center;
}

.main{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 500px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin: 25px;
    border-radius: 20px;
}

.grey{
    background-color: #a8bbad;
}

.score-parent{
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.score{
    color: #dadada;
}

.resetDiv{
    height: 50px;
    width: 100%;
    display: flex;
}

button{
    height: 40px;
    width: 306px;
    font-size: 15px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #dadada;
    border: none;
    transition: 0.1s;
}

button:hover{
    background-color: #dadada;
    color: rgba(0, 0, 0, 0.3);
}

input{
    border-radius: 10px;
}
.reset-button{
    width: 50%;
    margin: 5px 10px;
}

.play-again-button{
    width: 50%;
    margin: 5px 10px;
}

.confetti{
    display: none;
    height: 10px;
    width: 5px;
    background-color: black;
    position: absolute;
    left: 50vw;
    top: 50vh;
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.onboarding-parent{
    display: flex;
    justify-content: center;
}

.player-onboarding{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 500px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin: 25px;
    border-radius: 20px;
}

#playerName {
    width: 100%;
    height: 35px;
    font-size: 25px;
    text-align: center;
}
.onboard-label{
    width: 100%;
    margin: 5px 0;
    text-align: center;
    color: #dadada;
}

.onboard-section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.onboarding-option{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 70px;
    margin: 5px 10px 10px 10px;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.3s;
    transition: color 0.3s;
}

.symbol-option{
    font-size: 55px;
    line-height: 70px;
}

.onboard-button{
    width: 100%;
    margin: 10px 0;
}

.selected-option{
    outline-offset: 5px;
    outline: 5px dashed;
}

.color1{
    background-color: #5c37e7;
}

.color2{
    background-color: #e01b2d;
}

.color3{
    background-color: #40fa56;
}