/* Load fonts locally */
@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: #162121;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Gotham';
    line-height: 2rem;
}

.lights {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 2;

    #lights_top {
        position: absolute;
        top: 0;
        left: 0;
    }

    #lights_bottom {
        position: absolute;
        bottom: 0;
    }
}

.grainy {
    content: "";
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 182px;
    opacity: 0.12;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;

    .logo {
        img {
            width: 150px;
        }
    }

    .title {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .contact {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}