html,
body {
    margin: 0;
    padding: 0;
    background: black;
    color: white;
    font-family: sans-serif;
    font-weight: 50;
}

#shader-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}



.page {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    position: fixed;
    overflow: hidden;

}

.wrapper {
    font-size: 4rem;
    overflow: hidden;
    background-color: black;
    position: absolute;
    font-style: italic;
}


p {
    margin: 0;
}


.body-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.titles-left,
.titles-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 55vh;
    top: 0;

    -webkit-user-select: none;
    user-select: none;

}

.titles-right {
    margin-left: auto;
    transform: scaleX(-1);
}

.wrapper-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    min-width: 20vw;
    animation: fadeIn 0.5s;
}

.center .divider {
    width: 756px;
    height: 2px;
    background: white;
}

.center p {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-weight: bold;
    white-space: nowrap;
}

.symbol-links {
    display: flex;
    gap: 1rem;
}

.top-text-wrapper {
    margin-bottom: 0.5rem;
}

.back-wrapper {
    margin-top: 3rem;
}

.titles-left,
.titles-right {
    display: flex;
    flex-direction: column;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 0.8;
    overflow: hidden;
    opacity: 0.09;
    height: 100vh;
    width: 100%;
    max-width: 60vh;
    -webkit-user-select: none;
    user-select: none;
    color: white;


}

.titles-right {
    margin-left: auto;
    transform: scaleX(-1);

}

a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    text-transform: uppercase;

}

a:hover {
    color: lightblue;
}


.center .email {
    font-size: 1.5rem;
    margin-bottom: 2vh;
}

.earth-wrapper {
    margin-bottom: 1rem;
}

.earth img {
    width: 5.5rem;
}

.earth img:hover {
    filter: drop-shadow(0 0 5px white) drop-shadow(0 0 5px white) drop-shadow(0 0 10px white);
    animation: flicker 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
    }
}

@keyframes flicker {
    0% {
        opacity: 1;
    }

    3% {
        opacity: 0.2;
    }

    6% {
        opacity: 1;
    }

    8% {
        opacity: 0.6;
    }

    12% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    37% {
        opacity: 0.4;
    }

    39% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    67% {
        opacity: 0.3;
    }

    70% {
        opacity: 0.8;
    }

    72% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0.5;
    }

    94% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}



@media (max-width: 1500px) {

    .titles-left,
    .titles-right {

        font-size: 2rem;
    }

    .center p {
        font-size: 40px;
    }

    .center .number {
        font-size: 1.2rem;
    }

    .center .divider {
        width: 599px;
    }

    .wrapper {
        font-size: 2.5rem;
    }
}

@media (max-width: 1050px) {

    .titles-left,
    .titles-right {

        font-size: 1.5rem;
    }

    .center p {
        font-size: 25px;
    }

    .center .divider {
        width: 380px;
    }

    .center .number {
        font-size: 1.2rem;
    }

    .wrapper {
        font-size: 2.5rem;
    }
}



@media (max-width: 650px) {

    .titles-left,
    .titles-right {
        font-size: 1rem;
    }

    .center .divider {
        width: 380px;
    }

}

@media (max-width: 430px) {
    .back-wrapper {
        transform: translateY(-12px);
    }

    .earth img {
        width: 75px;
    }

    .titles-left,
    .titles-right {
        font-size: 0.8rem;
    }

    .center {
        gap: 1px;
    }

    .center p {
        font-size: 1rem;

    }

    .center .email {
        font-size: 0.689rem;
    }

    .center .divider {
        width: 220px;
    }

    .wrapper {
        background: none;
    }
}