.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#title {
    font-size: 35px;
    display: block;
    text-align: center;
}

#score-labels {
    display: none;
    justify-content: space-between;
    margin: 10px 10px auto 10px;
    font-size: 25px;
}

.startMenu {
    text-align: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50px;
}
#ruleBtn {
    display: block;
    margin: auto auto 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: white;
    color: red;
}

#correctionLabel {
    display: none;
    margin: 20px auto 10px;
    text-align: center;
    font-size: 25px;
}

#retryButton {
    display: none;
    margin: auto auto 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: white;
    color: forestgreen;
}

#startButton {
    background-color: white;
    border-color: rebeccapurple;
    border-radius: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* Creates a 2x2 container to fit the 4 buttons within */
.button-container {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 500px;
    height: 500px;
    margin-top: 150px;
}

/* Creates a color button class for each of the 4 colored buttons */
.color-btn {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7
}

/* Customizes the colored buttons in the game and main menu */
#purpleBtn { background-color: #a277ff; }
#orangeBtn { background-color: orange; }
#pinkBtn { background-color: hotpink; }
#silverBtn { background-color: silver; }

th, td { padding: 25px; }

#colorSoundTable {
    position: relative;
    top: 100px;
}

#sound-example1 { background-color: #a277ff; }
#sound-example2 { background-color: lightsalmon; }
#sound-example3 { background-color: lightpink; }
#sound-example4 { background-color: gray; color: white; }
