@font-face {
    font-family: 'HURSTON TYPE';
    src: url('HURSTONTYPE.woff2') format('woff2'),
        url('HURSTONTYPE.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



body {
    font-family: 'HURSTON TYPE';
    background-image: url(bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 0;
    background-attachment: fixed;
    background-position: center;
}

.logo {
    width: 500px;
    margin: 0px auto 40px;
}

.logo_mobile {

    display: none;
    width: 70% !important;
    margin: 0px auto 40px;
}

.social {
    height: 20px;
    position: absolute;
    left: 0;
    top: -4px;
}

.intro {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

div {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    letter-spacing: 2.5px;
}

li {
    height: 30px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: red;
    position: relative;
    text-indent: 27px;
}

a:hover {
    filter: invert(100%) sepia(50000%) saturate(0%) hue-rotate(63deg) brightness(102%) contrast(10002%);
}

p {
    margin: 0;
}

ul {
    padding: 0;
}


@media only screen and (max-width: 600px) {
    .logo {
        display: none !important;
    }

    .logo_mobile {
        display: block !important;
    }

    p {
        padding: 0 10%;
    }

    div {
        letter-spacing: 1.5px;
    }
}