html, body {
    height: 100%;
    --h1size: 3rem;
}

body {
    background-image: url("../../img/bg_gamemode.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center; /* vertikal zentrieren */
    justify-content: center; /* horizontal zentrieren */

}

.section {
    width: min(1000px, 100%);
    background-image: url("../../img/bg_buildstrike.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 12px;
    padding: 4vh;
    box-sizing: border-box;
    box-shadow: 3px 3px 3px rgba(122, 122, 122, 0.75);

    border: 4px solid rgba(255, 255, 255, 0);
    transition: border-color 0.7s ease, box-shadow 0.7s ease;
}

.section:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
    transition: border-color 0.7s ease, box-shadow 0.7s ease;
}

a.gamemode {
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 2px #aeaeae;
}
