@font-face {
    font-family: 'H';
    src: url('Helvetica.otf');
}

::-moz-selection {
    color: white;
    background: black;
}
  
::selection {
    color: white;
    background: black;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'H';
    font-size: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 5px;
    text-transform: lowercase;
}

a {
    text-decoration: none;
    color: black;
    font-style: italic;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* media query mobile */
@media screen and (max-width: 1000px) {

    body {
        font-size: 25px;
        text-transform: uppercase;
    }

    .info {
        position: fixed;
        top: 50vh;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .background {
        object-fit: contain;
        height: unset;
        width: 100%;
        top: 0;
        transition: filter 0.5s;
        /* animation name hue */
        animation: hue 5s infinite;
    }

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