@font-face {
    font-family: WarsawGothicExtended3D;
    src: url("../fonts/WarsawGothicExtended3D.otf") format("opentype");
}

html,
body {

}

body {
    display: flex;
    flex-direction: column;
    margin: 2rem;
    animation: background 30s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
    justify-content: flex-start;
    @media (min-width: 650px) {
        margin: 2rem 7rem;
        justify-content: center;
    }
}



h1 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 3rem;
    font-family: WarsawGothicExtended3D;
    transition: all ease-in .3s;
    mix-blend-mode: exclusion;
}

a {
    font-size: .95rem;
    display: block;
    color: rgba(8, 14, 54, 0.3);
    font-family: arial, helvetica, sans-serif;
    margin-bottom: .5rem;
    transition: all ease-in .3s;
}

@media (min-width: 650px) {
    h1 {
        font-size: 12vw;
    }
    a {
        font-size: 1.35rem;
    }
}

@keyframes background {
    0% {
        background-color: rgb(255, 153, 167);
    }
    33% {
        background-color: rgb(190, 255, 153);
    }
    67% {
        background-color: rgb(153, 194, 255);
    }
    100% {
        background-color: rgb(255, 153, 167);
    }
}
