a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Commissioner";
    src: url(../fonts/Commissioner-Regular.woff2);
}

body,
html {
    background-color: var(--dark-turquoise);
    width: 100vw;
    /*  overflow: hidden;*/
    font-family: "Commissioner", sans-serif;
    position: relative;
}

.global {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.text {
    position: absolute;
    z-index: 4;
    top: 85vh;
    left: 10vw;
    font-size: 40px;
    width: 80vw;
    margin: 0 auto;
    text-align: center;
}

.image {
    display: block;
    margin: auto;
}

@media (max-width: 1100px) {
    .image {
        width: 80vw;
    }
}

@media (max-width: 370px) {
    .text {
        font-size: 20px;
    }
}

@media (max-height: 1000px) {
    .image {
        width: 80vw;
    }
}

@media (max-height: 500px) {
    .text {
        top: 35vh;
        font-size: 20px;
    }
}

@media (min-height: 500px) {
    .text {
        top: 40vh;
        font-size: 30px;
    }
}

@media (min-height: 800px) {
    .text {
        top: 45vh;
    }
}

@media (min-width: 1900px) {
    .image {
        width: calc(937px * var(--scale));
        height: calc(575px * var(--scale));
    }
}
