@font-face {
    font-family: "Ethnocentric";
    src: url("../media/ethnocentric-rg.otf");
}

:root {
    --color-accent: #ffd500;
}

body {
    background-color: #0e0e0e;
    color: #eeeeee;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
}

h1 {
    margin: 0;
    font-size: 7.5rem;
    font-family: "Ethnocentric", sans-serif;
}

a {
    color: inherit;

    &:visited, &:active {
        color: inherit;
    }

    &:hover, &:focus, &:active {
        color: var(--color-accent);
    }
}

.durren {
    position: fixed;
    height: 80dvh;
    top: 50dvh;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.4;
    pointer-events: none;

    img {
        height: 100%;
    }
}

.content {
    height: 80dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10dvh 0;
    gap: 2rem;
}

.social {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-size: 2.5rem;

    a {
        text-decoration: none;

        &:hover i {
            filter: drop-shadow(0 0 7px #ffd50088);
        }
    }
}

@media (orientation: portrait) {
    .durren {
        height: auto;
        width: 100dvw;

        img {
            height: auto;
            width: 100%;
        }
    }

    .content {
    }
}