
@font-face {
    font-family: 'Bungee Shade';
    font-style: normal;
    font-weight: 400;
    src: local('Bungee Shade'), local('BungeeShade-Regular'), url("fonts/Bungee_Shade/BungeeShade-Regular.ttf");
  }
  @font-face {
    font-family: 'WorkSans';
    font-style: normal;
    font-weight: 400;
    src: local('WorkSans'), local('WorkSans-Regular'), url("fonts/Work_Sans/WorkSans-Regular.ttf");
  }

body {
    color: white;
    font-family: "WorkSans";
    margin: 0;
}
header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 30vh;
    background-color: white;
    color: black;
    text-align: center;
}

h1 { 
    font-family: "Bungee Shade";
    padding: 0;
    margin-top: -15px;
    margin-bottom: -5px;
}

header .headerWrapper {
    flex: 0 0 auto;
    font-family: "Bungee Shade";
    font-size: 7vh;
}

nav {
    display: flex;
    text-align: center;
    flex: 0 0 auto;
    font-size: 16px;
}

nav a {
    font-style: normal;
    text-decoration: none;
    padding: 8px;
    color: black;
}

nav a:hover {
    height: 100%;
    text-decoration: underline;    
}

html {
}

a {
    color: white;
}

#viewport { 
    position: absolute;
    width: 100%;
    height: 100%;
}

.section {
    padding-top: 35px;
    padding-bottom: 35px;
    min-height: 20vh;
    text-align: left;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: black;
}

.section.first {
    padding-top: 0;
    min-height: 30vh;
}

.backgroundit {
position: relative;
}


.section.last {
    padding-bottom: 5px;
    padding-top:5px;
    min-height: 20px;
}

.section.black {
    background-color: black;
    color: white;
}

.section .content {
    width: 40vw;
}

@media only screen and (max-width: 1500px) {
    .content {
        width: 60vw !important;
    }
}

@media only screen and (max-width: 1000px) {
    .content {
        width: 80vw !important;
    }
}