* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: sans-serif;
    color: whitesmoke;
}

p#score {
    font-size: large;
    margin: 5px 0;

}

div#start-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

h1 {
    font-size: xx-large;
    padding: 10px 20px;
    border: 4px solid whitesmoke;
}

h2 {
    font-size: x-large;
    text-decoration: underline;
}

button {
    font-size: large;
    padding: 10px 20px;
}

#controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.start-menu-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


#pause-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sound {
    padding: 3px;
}

#s2 {
    display: none;
}