#splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-image: url("../assets/images/splash/splash.png");
    padding-left: var(--horizontal-margin);
    padding-right: var(--horizontal-margin);
}

#splash-content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;

}

.splash-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    width: 236px;
    height: 236px;
    padding: 1vw;
    margin: 10px;

}

#splash-content > .splash-content-section:nth-child(1) {
    background-image: url("../assets/images/splash/grass.png");
}
#splash-content > .splash-content-section:nth-child(2) {
    background-image: url("../assets/images/splash/map.png");
}
#splash-content > .splash-content-section:nth-child(3) {
    background-image: url("../assets/images/splash/factory.jpg");
}
#splash-content > .splash-content-section:nth-child(4) {
    background-image: url("../assets/images/splash/enchanting_table.png");
}
#splash-content > .splash-content-section:nth-child(5) {
    background-image: url("../assets/images/splash/bridge.png");
}

.splash-content-section p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 12pt;
}

.splash-content-section h2 {
    text-align: center;
    font-size: 14pt;
    padding: 0;
    margin: 0;
}