@font-face {
    font-family: 'Author';
    src: url('fonts/Author-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Author';
    src: url('fonts/Author-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eiko';
    src: url('fonts/PPEiko-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@keyframes hueShift {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(359deg);
    }
}


body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    color: #002121;
    -webkit-font-smoothing: antialiased;
    animation: hueShift 30s infinite linear;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/bg.jpg);
    background-size: cover;
    z-index: -1;
}

.wrapper {
    margin-top: 100px;
    width: 700px;
}

h1 {
    font-family: 'Eiko', Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 62px;
    line-height: 80px;
}

.text {
    font-family: 'Author', Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 41px;
}

.text p {
    margin: 0 0 20px 0;
}

.text a,
.text a:visited {
    color: #A286F5;
}

@media screen and (max-width: 999px) {
    .wrapper {
        margin-top: 50px;
        width: 90%;
    }
}