* {
    background-color: lightgray;
    font-family: "Alan Sans", sans-serif;
}

.grid-box {
    margin: 10px 40px 20px 40px;
}

.splashscreen {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.start-buttons {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    justify-content: space-evenly;
}

.randomize-grid {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    margin-bottom: 50px;
}

#player1-randomize, #player2-randomize {
    padding: 20px 40px 20px 40px;
    border: 2px solid black;
    border-radius: 20px;
}

#player1-randomize:hover, #player2-randomize:hover {
    background-color: darkgray;
    cursor: pointer;
}

#player1-randomize:checked, #player2-randomize:checked {
    background-color: aqua;
    cursor: pointer;
}

#pvp, #pve {
    border: 2px solid black;
    border-radius: 30px;
    padding: 10px 50px 10px 50px;
}

#pvp:hover, #pve:hover {
    background-color: darkgray;
    cursor: pointer;
}

#grid-x {
    margin-right: 20px;
    padding: 10px 40px 10px 40px;
    border-radius: 20px;
}

.randomize {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#randomizer {
    border: 2px solid black;
    padding: 15px 30px 15px 30px;
    border-radius: 20px;
}

#randomizer:hover {
    background-color: darkgray;
    cursor: pointer;
}

#grid-y {
    margin-left: 20px;
    padding: 10px 40px 10px 40px;
    border-radius: 20px;
}

.grid-size {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.welcome-screen {
    margin-bottom: 20px;
}

h1, h3, h4 {
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
}

h1 {
    font-size: 50px;
}