/*******************
 *      FONTS      *
 *******************/

@font-face {
    font-family: 'aqua';
    src: url('font/aqua.eot'); /* IE9 Compat Modes */
    src: url('font/aqua.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('font/aqua.woff') format('woff'), /* Modern Browsers */
    url('font/aqua.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('font/aqua.svg#svgFontName') format('svg'); /* Legacy iOS */
}

body {
    font-family: 'aqua', Fallback, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    color:white;
}

/*******************
 *      LINKS      *
 *******************/

a {
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-family: 'aqua';
}

a:hover {
    text-decoration: underline;
}


/*******************
 *      HEADINGS      *
 *******************/

html,body {
    width: 100%;
    height: 100%;
    font-size: 100%;
    overflow-x: hidden;
    padding: 1vh 1vw;
    margin: 0;

}
#vanta {
    position: absolute;
    display: block;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;

}

h1 {
    font-family: 'aqua';
    color: white;
    font-size: 3.5em;
    width:100%;
    align-items: center;
}

/*Headings on sub pages*/

h2 {
    font-family: 'aqua';
    font-size: 5rem;
    align-items: center;
}

/* Nav bar*/

h3 {
    font-family: 'aqua';
    font-size: 1.5rem;
    font-family: 'Bold';
    flex: 1 0 auto;
}

/* Grid Text*/

h4 {
    width: 100%;
    margin: 0.5rem 0 0 0;
    font-size: 1.9rem;
    text-align: center;
}

h4:hover {
    text-decoration: underline;
}

/* Description on landing page*/

h5 {
    font-family: 'aqua';
    color: #1a1a1a;
    font-size: 2.2rem;
    line-height: normal;
}

/* small grid text*/

h6 {
    font-family: 'aqua';
    font-size: 1.25rem;
    text-align: center;
    color:   #313131;
}


/*******************
 *      GRID / BOX / WHATEVER      *
 *******************/


.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 3em;

}

.box {
    padding: 10px;
    max-width: 100%;
    justify-items: flex-end;
}


/** Nav row**/

header {

    display: flex;
    justify-content: flex-end;
    align-items: center;


}

.name {

    margin-bottom: 2rem;
    margin-right: auto;

}


.email {

    margin-bottom: 2rem;

}


/** Description row **/

.row2 {
    display: flex;
    flex-direction: row;
    max-width: 75%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
    margin-bottom: 5em;
    margin-left: 0.5em;

}

a.box img {
    width: 100%;
    margin-bottom: 0.5rem;
    align-items: center;

}


.fullimg {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}



/*******************
 *      TEXT      *
 *******************/




.textbox {
    width:100%;
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
}

li {
    font-family: 'aqua';
    font-size: 1.25em;
    font-weight: inherit;
    line-height: 1.5em;
    color: #1a1a1a;

}

p {
    position: relative;
    font-family: 'aqua';
    font-size: 1.35em;
    font-weight: inherit;
    line-height: 1.45em;
    color: #1a1a1a;
    text-align: left;
}




.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.row {
    padding: 1vw;
}


footer {
    padding:50px 0px 0px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;



}

.twitter {

    margin-top: 2rem;
    margin-bottom: 2rem;


}



/*******************
*      MOBILE      *
*******************/

@media screen and (max-width: 450px)


{

    .row2 {
        width: 100%;
    }


    h1 {
        font-size: 2.5rem;
    }

    /*Headings on sub pages*/

    h2 {
        font-size: 3rem;
    }

    /* Nav bar*/

    h3 {
        font-size: 1.5rem;
        color: white;
    }

    /* Grid Text*/

    h4 {
        font-size: 1.5rem;
    }

    /* Description on landing page*/

    h5 {
        font-family: 'aqua';
        font-size: 1.5em;
    }

    .textbox {
        width:100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    p {
        font-size: 1.35em;
        line-height: 1.45em;
    }


}