html {
    overflow: auto;
}

* {
    margin: 0;
}

@font-face {
    font-family: 'outfit';
    font-style: normal;
    font-display: swap;
    src: url('./static/Outfit-Regular.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.container {
    height: 100vh;
}

.cover {

}

.cover, img {
    height: 100vh;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.cover img:not(#img1) {
    display: none;
}

img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: opacity(0.85);
}

.content-overlay {
    width: 100%;
}

.text-overlay {
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.wrapper {
    position: relative;
}

.text-overlay  p {
    position: fixed;
    left: 0;
    bottom: -20vh;
    padding: 0 3vw;
    display: inline-flex;
    cursor: default;
    font-family: outfit, system-ui, sans-serif;
    font-size: 68px;
    text-wrap: nowrap;
    white-space: nowrap;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    color: black;
    text-shadow: .5px .5px 2px rgba(70, 70, 70, 0.7);
}

.text-overlay  p a {
    color: inherit;
    text-decoration: none;
}

.text-overlay .contact {
    padding-left: 10px;
    transition: all 1s;
}

.text-overlay .contact:hover {
    color: #fff;
}
.text-overlay .contactxxx:hover {
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(1);
}

@media only screen and (max-width: 1024px) {
    .text-overlay p {
        font-size: 54px;
    }
}

@media only screen and (max-width: 768px) {
    .text-overlay p {
        font-size: 36px;
    }
}

@media only screen and (max-width: 600px) {
    .text-overlay p {
        font-size: 28px;
    }
}

html,
.text-overlay {
    scrollbar-width: none;

}

html::-webkit-scrollbar,
.text-overlay::-webkit-scrollbar {
    display: none;
}