@font-face {
    font-family: "GeoSans-Light";
    src: url("fonts/GeosansLight.ttf") format("truetype");
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    margin-bottom: 30px; 
    font-family: "GeoSans-Light", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

h2 {
    margin-bottom: 30px; 
    font-family: "GeoSans-Light", sans-serif;
    font-size: 1.5em;
    font-weight: 800;
}


#header-video {
    position: relative;
    top: 0;
    transform: none;
    min-width: auto;
    min-height: 500px;
    object-fit: cover;
    max-height: 100%;
    z-index: -100;
    pointer-events: none;
}

.header-video-container {
    min-height: 400px;
}

.our-games {
}

.game-block {
    height: 500px;
    width: 100%;
    position: relative;
}

.game-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    justify-content: space-evenly;
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    z-index: -1;
}

.game-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-text {
    background-color: #000a;
    color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-logo {
    margin: 16px
}


.about-block{
    height: 500px;
    width: 100%;
    position: relative;
}

.about-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    justify-content: space-evenly;
}

.about-background{
    height: 500px;
    width: 100%;
    position: absolute;
    z-index: -1;
   
}

.about-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image{
    padding: 10px;
}

.about-text{
    background-color: rgba(0, 0, 0, 0.545);
    color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .game-content, .about-content{
        display: flex;
        flex-direction: column;
    }

    .game-block, .about-block{
        height: auto;
    }

    .game-text, .about-text{
        height: auto;
    }

    .button, .button.button-white{
        padding: 0.5em;
        border-radius: 1.5em;
    }
}