@font-face {
    font-family: 'Conthrax';
    src: url('../fonts/conthrax-sb.otf') format('opentype');
}

body,
html {
    overflow-x: hidden;
    color: white;
    background-color: #1d1d1b;

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-family: "Conthrax", sans-serif;
}

.overlap-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.overlap-child {
    grid-area: 1 / 1;
}

/* Sections */
.section {
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.section .row {
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
}

#section-0 {
    text-align: center;
}

#section-1 {
    background-image: url('../images/background/2.jpg');
}

#section-2 {
    background-image: url('../images/background/3.jpg');
}

#section-3 {
    background-image: url('../images/background/4.jpg');
}

#section-4 {
    background-image: url('../images/background/5.jpg');
}

/* Image styles */
#section-0-logo {
    width: 75%;
    height: auto;
}

#section-0-start {
    width: 35%;
    height: auto;
    margin-top: 25px;
}

.section-1-image {
    width: 80%;
}

.section-2-image {
    width: 80%;
}

.section-3-image {
    width: 80%;
    transform: scale(1.05, 1.05);
}

.section-4-image {
    width: 50%;
}

.section-4-btn {
    width: 80%;
}

#section-4-text {
    max-width: 100%;
}

/* Make buttons more buttonish */
.image-btn img {
    transition: transform 0.2s, filter 0.2s;
}

.image-btn:active img {
    transform: scale(0.95);
    filter: brightness(70%);
}


/* Mobile adjustments */
@media only screen and (max-device-width: 768px) {
    #section-0 {
        justify-content: center !important;
    }

    #section-1 {
        background-image: url('../images/background_mobile/2.jpg');
    }

    #section-2 {
        background-image: url('../images/background_mobile/3.jpg');
    }

    #section-3 {
        background-image: url('../images/background_mobile/4.jpg');
    }

    #section-4 {
        background-image: url('../images/background_mobile/5.jpg');
    }
}