@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

body {
    background: black;
    color: white;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
    position: relative;
    overflow: hidden;
}

.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 5;
    position: relative;
}

.img-wrapper {
    max-height: 70vh;
    max-width: 90vw;
    overflow: hidden;
    margin-bottom: 20px;
}

.coming-soon-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-size: 3.5em;
    font-weight: bold;
    color: #757575;
    text-align: center;
}

.fuzzy-overlay {
    position: absolute;
    inset: -200%;
    background-image: url("../img/noise.png");
    opacity: 25%;
    z-index: 10;

    animation: shift .3s steps(8) infinite both;
}

@keyframes shift {
    0% {
        transform: translateX(10%) translateY(10%);
    }

    100% {
        transform: translateX(-10%) translateY(-10%);
    }
}