@font-face {
    font-family: "Avenir";
    font-weight: 200;
    src: url(/assets/fonts/avenir-book.woff) format("woff")
}

@font-face {
    font-family: "Avenir";
    font-weight: normal;
    src: url(/assets/fonts/avenir-heavy.woff) format("woff")
}








* {
    box-sizing: border-box;
}

html {
    width: 100vw;
    position: relative;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: url(assets/img/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    font-family: "Avenir";
    font-weight: 200;
    font-size: 16px;

    color: black;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10vw;

    line-height: 1.5;
}

.content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 750px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-wrapper::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 150%;
    height: 150%;
    z-index: -1;

    background: radial-gradient(#ffffffc5, #ffffff00);
}

img.logo {
    width: 100%;
}

h1 {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.svgs {
    display: none;
}

.contact-info {
    margin-top: 4rem;
}

.contact-info svg {
    box-sizing: content-box;
    min-width: 1rem;
    max-width: 1rem;
    min-height: 1rem;
    max-height: 1rem;
    text-align: center;
}

.contact-info > *  {
    display: flex;
    align-items: center;

    margin: 1rem 0;
}

.contact-info > * > span  {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid black;
}

a {
    transition: all 0.3s ease;
    opacity: 1;
}
a:hover {
    opacity: 0.5;
}

@media(min-width: 900px) {

    .content-wrapper {
        position: relative;
        z-index: 5;
        max-width: 750px;
        width: 100%;

        display: block;
    }


    body {
        font-size: 20px;
    }

    
    img.logo {
        margin-left: -15%;
    }

    

    .content-wrapper {
        margin-left: 10vw;
    }

    .contact-info {
        margin-left: 1.75rem;
    }
}