* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

body {
    content: url(images/Fblogo.png) url(images/fbcolor.png) url(images/Githublogo.png) url(images/githubcolor.png) url(images/Behancelogo.png) url(images/Behancecolor.png);
}

header {
    background-color: #ff6666;
    position: fixed;
    width: 100%;
    text-align: center;
    z-index: 2;
    height: 80px;
    top: 0;
    left: 0;
    min-width: 320px;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

#logo {
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 32px;
    margin-left: 40px;
    float: left;
    margin-top: 17px;
    -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

header.smaller {
    height: 60px;
}

header.smaller a#logo {
    font-size: 28px;
    margin-top: 10px;
}

header.smaller a.navItem {
    margin-top: 20px;
}

.navItem {
    float: right;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 14px;
    margin-right: 20px;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

#itemRight {
    margin-right: 40px;
}

#launch {
    height: 100vh;
    background-image: url(images/launchbackground.png);
    background-position: 0 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#launch p {
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 48px;
    position: relative;
    top: 40vh;
}

#launch a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    width: 100vw;
}

#launch a img {
    height: 14px;
}

#about {
    height: 100vh;
    background: #7623c8;
    background: -webkit-linear-gradient(#7623c8, #8f5060); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#7623c8, #8f5060); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#7623c8, #8f5060); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#7623c8, #8f5060); /* Standard syntax */
    position: relative;
    text-align: center;
}

.title {
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 40px;
    position: relative;
    top: 20vh;
    margin: 0 75px;
}

.columnContainer {
    margin: 0 auto;
    position: relative;
    bottom: -30vh;
    text-align: center;
    width: 980px;
}

.columns {
    text-align: center;
    position: relative;
    float: left;
    margin: 0;
}

.columns p {
    text-align: justify;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 18px;
    position: relative;
    width: 280px;
}

.columns img {
    height: 75px;
    margin-bottom: 45px;
}

#about a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    position: absolute;
    bottom: 10px;;
    left: 0;
    width: 100vw;
}

#about a img {
    height: 14px;
}

#center {
    margin: 0 60px;
}

#facts {
    height: 100vh;
    background: #34d1af;
    background: -webkit-linear-gradient(#34d1af, #6258c0); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#34d1af, #6258c0); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#34d1af, #6258c0); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#34d1af, #6258c0); /* Standard syntax */
    position: relative;
    text-align: center;
}

#facts a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100vw;
}

#facts a img {
    height: 14px;
}

#facts .title {
    top: 15vh;
}

.collectionContainer {
    margin: 0 auto;
    position: relative;
    bottom: -20vh;
    text-align: center;
    width: 780px;
}

#containerBottom {
    bottom: -23vh;
}

.containerItem {
    text-align: center;
    position: relative;
    float: left;
    margin: 0;
    background-color: rgba(0,0,0,0.5);
    width: 240px;
    height: 180px;
    padding-top: 15px;
    transition: all 0.1s linear;
}

.containerItem:hover {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
    cursor: pointer;
    background-color: rgba(0,0,0,0.7);
}

#middleTop {
    margin: 0 20px;
}

#middleBottom {
    margin: 0 20px;
}

.containerItem p {
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
}

.containerItem img {
    height: 125px;
}

.modalDialog {
    position: fixed;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    -ms-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.modalDialog p {
    text-align: justify;
    color: white;
    position: relative;
    font-family: "Roboto Slab", serif;
    font-size: 26px;
    width: 750px;
    margin: 0 auto;
    left: -10px;
}

#modal6 p {
    margin-top: 15vh;
}

.modalDialog img {
    height: 250px;
    margin-top: 15vh;
    margin-bottom: 20px;
}

.modalDialog ol {
    text-align: left;
    width: 50vw;
    margin: 30px auto;
    font-size: 24px;
}

.close {
    margin: 0;
    padding: 0;
    position: absolute;
}

#contact {
    height: 100vh;
    background-image: url(images/contactbackground.png);
    background-position: 0 10%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.topTitle {
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 40px;
    position: relative;
    top: 15vh;
    margin: 0 75px;
}

form {
    padding: 15px; 25px;
    width: 70vw;
    position: ab;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vh;
}

#contact .formp {
    font-size: 20px;
    text-align: left;
    color: white;
    font-family: "Roboto Slab", serif;
}

input {
    height: 35px;
    border: none;
    width: 100%;
    margin: 10px auto;
    background-color: tr
}

input[type="text"], input[type="email"] {
    padding-left: 10px;
    color: #444;
    font-family: "Roboto Slab", serif;
    font-size: 12px;
    border-bottom: dashed 2px white;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

input[name="comments"] {
    border: none;
    padding-bottom: 4em;
}

input[type="submit"] {
    display: block;
    width: 135px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    background-color: #ff6666;
    color: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

input[type="submit"]:hover {
    border: solid 3px white;
    cursor: pointer;
}

#contact a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100vw;
}

#contact a img {
    height: 14px;
}

#whomadethis {
    height: 100vh;
    background: #0276b9;
    background: -webkit-linear-gradient(#0276b9, #ac6b81); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#0276b9, #ac6b81); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#0276b9, #ac6b81); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#0276b9, #ac6b81); /* Standard syntax */
    position: relative;
    text-align: center;
}

#whomadethis #profile {
    float:left;
    height: 300px;
    position: relative;
    top: 20vh;
    left: 10vw;
}

#whomadethis .bottomTitle {
    text-align: justify;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    margin: 0 auto;
    width: 50vw;
    right: -12vw;
    position: relative;
    bottom: -25vh;
}

#whomadethis a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100vw;
}

#whomadethis a #downarrow {
    height: 14px;
}

#beforeyougo {
    height: 100vh;
    background: white;
    position: relative;
    text-align: center;
}

#beforeyougo iframe {
    margin-top: 10vh;
}

#beforeyougo #source {
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 12px;
}

#beforeyougo h1 {
    color: black;
    font-family: "Roboto Slab", serif;
    font-size: 36px;
}

#beforeyougo h2 {
    color: black;
    font-family: "Roboto Slab", serif;
    font-size: 22px;
    padding: 0 250px;
}

footer {
    background-color: #ff6666;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 2;
    height: 60px;
    bottom: 0;
    left: 0;
}

footer img {
    margin-right: 15px;
    height: 60px;
    margin-top: 15px;
}

footer button {
    margin-top: 15px;
    margin-right: 15px;
    height: 35px;
    width: 35px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background-color: #ff6666;
    float: left;
}

footer button:visited {
    text-decoration: none;
}

footer button:hover {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

footer button:active {
    text-decoration: none;
}

footer img:hover {
    cursor: pointer;
}

#fb {
    margin-left: 25px;
    background-image: url(images/Fblogo.png);
    background-size: cover;
    background-position: center;
}

#fb:hover {
    background-image: url(images/fbcolor.png);
}

#github {
    background-image: url(images/Githublogo.png);
    background-size: cover;
    background-position: center;
}

#github:hover {
    background-image: url(images/githubcolor.png);
}

#behance {
    background-image: url(images/Behancelogo.png);
    background-size: cover;
    background-position: center;
}

#behance:hover {
    background-image: url(images/Behancecolor.png);
}

#home {
    float: right;
    height: 30px;
    margin-right: 25px;
}

#openIcon {
    color: white;
    font-size: 24px;
    display: none;
}

.sidenav {
    width: 100%;
    height: 0;
    position: fixed;
    z-index: 4;
    top: 0;
    right: 0;
    background-color: #ff6666;
    overflow-x: hidden;
    padding-top: 60px;
    display: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.sidenav a {
    text-decoration: none;
    text-align: center;
    color: white;
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 25px 0 50px 0;
}

.sidenav .closebtn {
    position: absolute;
    top: 2px;
    text-align: right;
    right: 20px;
    font-size: 36px !important;
    margin: 0 0 50px 0;
}

#responsiveCarousel {
    display: none;
}

.responsiveContainer {
    display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .columnContainer {
        max-width: 720px;
    }
    
    .columns {
        width: 200px;
    }
    
    .columns p {
        font-size: 100%;
        width: auto;
    }
    
    .collectionContainer {
        margin-top: 25px;
        width: 700px;
    }
    
    .containerItem {
        height: 140px;
        width: 220px;
    }
    
    .containerItem img {
        height: 100px;
    }
    
    .containerItem p {
        font-size: 18px;
    }
    
    #whomadethis .bottomTitle {
        font-size: 20px;
        margin: 0 auto;
        width: 60vw;
        right: -12vw;
        position: relative;
        bottom: -25vh;
    }
    
    #beforeyougo h1 {
        font-size: 30px;
    }
    
    #beforeyougo h2 {
        font-size: 22px;
        padding: 0 50px;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 24px;
    }

    .modalDialog img {
        height: 175px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 20px;
    }
}

@media only screen and (max-width: 543px) {
    .navItem {
        display: none;
    }
    
    #openIcon {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 20px;
    }
    
    #launch {
        background-size: cover;
        background-position: -150px 50px;
    }
    
    #launch p {
        font-size: 36px;
        top: 45vh;
        margin: 0 5%;
    }
    
    #logo {
        font-size: 24px;
        margin-left: 20px;
    }
    
    header.smaller a#logo {
        font-size: 20px;
        margin-top: 15px;
    }
    
    header {
        height: 70px;
    }
    
    .title {
        font-size: 30px;
        top: 15vh;
    }
    
    #about {
        height: 260vh;
    }
    
    .columnContainer {
        display: none;
    }
    
    h2 {
        display: none;
    }
    
    .topTitle {
        text-align: center;
        padding: 0;
        font-size: 30px;
    }
    
    #responsiveCarousel {
        display: block;
    }
    
    #responsiveCarousel p {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        width: 80vw;
        margin: 0 auto;
        position: relative;
    }

    #responsiveCarousel img {
        height: 75px;
        margin-bottom: 45px;
    }
    
    .collectionContainer {
        display: none;
        width: 100%;
    }
    
    .responsiveContainer {
        text-align: center;
        display: block;
        height: 200px;
    }
    
    .containerItem {
        width: 200px;
        margin: 10px;
        position: relative;
        left: 11vw;
    }
    
    #topResponsive {
        position: relative;
    }
    
    #bottomResponsive {
        position: relative;
    }
    
    #facts {
        height: 250vh;
        text-align: center;
    }
    
    #responsiveFacts {
        position: relative;
        top: 20vh;
        text-align: center;
        padding: 0 7vh;
    }
    
    #responsiveFacts p {
        font-size: 16px;
    }
    
    #topEntry {
        margin-top: 150px;
        height: 60vh;
    }
    
    #middleEntry, #bottomEntry {
        margin-top: 100px;
        height: 60vh;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 16px;
    }

    .modalDialog img {
        height: 150px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 18px;
    }
    
    #whomadethis div {
        width: 100vw;
        text-align: center;
    }
    
    #whomadethis #profile {
        height: 150px;
        position: relative;
        top: 20vh;
        margin: 0 auto;
        float: none;
        left: 1vh;
    }

    #whomadethis .bottomTitle {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 16px;
        margin: 0 auto;
        width: 70vw;
        position: relative;
        left: 1vh;
    }
    
    #beforeyougo h1 {
        padding: 30px 10px;
        font-size: 30px;
    }
    
}

@media only screen and (min-width: 375px) and (max-width: 753px) {
    .navItem {
        display: none;
    }
    
    #openIcon {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 20px;
    }
    
    #launch {
        background-size: cover;
        background-position: -150px 50px;
    }
    
    #launch p {
        font-size: 36px;
        top: 45vh;
        margin: 0 5%;
    }
    
    #logo {
        font-size: 24px;
        margin-left: 20px;
    }
    
    header.smaller a#logo {
        font-size: 20px;
        margin-top: 15px;
    }
    
    header {
        height: 70px;
    }
    
    .title {
        font-size: 30px;
        top: 15vh;
    }
    
    #about {
        height: 260vh;
    }
    
    .columnContainer {
        display: none;
    }
    
    h2 {
        display: none;
    }
    
    .topTitle {
        text-align: center;
        padding: 0;
        font-size: 30px;
    }
    
    #responsiveCarousel {
        display: block;
    }
    
    #responsiveCarousel p {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        width: 80vw;
        margin: 0 auto;
        position: relative;
    }

    #responsiveCarousel img {
        height: 75px;
        margin-bottom: 45px;
    }
    
    .collectionContainer {
        display: none;
        width: 100%;
    }
    
    .responsiveContainer {
        text-align: center;
        display: block;
        height: 200px;
    }
    
    .containerItem {
        width: 200px;
        margin: 10px;
    }
    
    #topResponsive {
        position: relative;
    }
    
    #bottomResponsive {
        position: relative;
    }
    
    #facts {
        height: 250vh;
        text-align: center;
    }
    
    #responsiveFacts {
        position: relative;
        top: 20vh;
        text-align: center;
        padding: 0 7vh;
    }
    
    #responsiveFacts p {
        font-size: 16px;
    }
    
    #topEntry {
        margin-top: 150px;
        height: 60vh;
    }
    
    #middleEntry, #bottomEntry {
        margin-top: 100px;
        height: 60vh;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 16px;
    }

    .modalDialog img {
        height: 150px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 18px;
    }
    
    #whomadethis div {
        width: 100vw;
        text-align: center;
    }
    
    #whomadethis #profile {
        height: 150px;
        position: relative;
        top: 20vh;
        margin: 0 auto;
        float: none;
        left: 1vh;
    }

    #whomadethis .bottomTitle {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 16px;
        margin: 0 auto;
        width: 70vw;
        position: relative;
        left: 1vh;
    }
    
    #beforeyougo h1 {
        padding: 30px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 754px) and (max-width: 768px) {
    .navItem {
        display: none;
    }
    
    #openIcon {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 20px;
    }
    
    #launch {
        background-size: cover;
        background-position: -150px 50px;
    }
    
    #launch p {
        font-size: 36px;
        top: 45vh;
        margin: 0 5%;
    }
    
    #logo {
        font-size: 24px;
        margin-left: 20px;
    }
    
    header.smaller a#logo {
        font-size: 20px;
        margin-top: 15px;
    }
    
    header {
        height: 70px;
    }
    
    .title {
        font-size: 30px;
        top: 15vh;
    }
    
    #about {
        height: 260vh;
    }
    
    .columnContainer {
        display: none;
    }
    
    h2 {
        display: none;
    }
    
    .topTitle {
        text-align: center;
        padding: 0;
        font-size: 30px;
    }
    
    #responsiveCarousel {
        display: block;
    }
    
    #responsiveCarousel p {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        width: 80vw;
        margin: 0 auto;
        position: relative;
    }

    #responsiveCarousel img {
        height: 75px;
        margin-bottom: 45px;
    }
    
    .collectionContainer {
        display: none;
        width: 100%;
    }
    
    .responsiveContainer {
        text-align: center;
        display: block;
        height: 200px;
    }
    
    .containerItem {
        width: 200px;
        margin: 10px;
    }
    
    #topResponsive {
        position: relative;
    }
    
    #bottomResponsive {
        position: relative;
    }
    
    #facts {
        text-align: center;
    }
    
    #responsiveFacts {
        position: relative;
        top: 20vh;
        text-align: center;
        padding: 0 7vh;
    }
    
    #responsiveFacts p {
        font-size: 16px;
    }
    
    #topEntry {
        margin-top: 150px;
        height: 60vh;
    }
    
    #middleEntry, #bottomEntry {
        margin-top: 100px;
        height: 60vh;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 16px;
    }

    .modalDialog img {
        height: 150px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 18px;
    }
    
    #whomadethis div {
        width: 100vw;
        text-align: center;
    }
    
    #whomadethis #profile {
        height: 150px;
        position: relative;
        top: 20vh;
        margin: 0 auto;
        float: none;
        left: 1vh;
    }

    #whomadethis .bottomTitle {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 16px;
        margin: 0 auto;
        width: 70vw;
        left: 1vh;
        position: relative;
    }
    
    #beforeyougo h1 {
        padding: 30px 10px;
        font-size: 30px;
    }
}

@media only screen and (min-height: 500px) and (max-width: 320px) {
    #launch {
        background-position: -150px 50px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 374px) {
    html {
        width: 100vw;
    }
    
    .navItem {
        display: none;
    }
    
    .sidenav {
        width: 100vw;
        position: fixed;
        left: 0;
    }
    
    header {
        width: 100vw;
        position: fixed;
    }
    
    #openIcon {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 20px;
    }
    
    #launch {
        background-size: cover;
        background-position: -150px 50px;
    }
    
    #launch p {
        font-size: 36px;
        top: 45vh;
        margin: 0 5%;
    }
    
    #logo {
        font-size: 24px;
        margin-left: 20px;
        margin-right: 0;
    }
    
    header.smaller a#logo {
        font-size: 20px;
        margin-top: 15px;
    }
    
    header {
        height: 70px;
    }
    
    .title {
        font-size: 26px;
        top: 15vh;
    }
    
    #about {
        height: 280vh;
    }
    
    .columnContainer {
        display: none;
    }
    
    h2 {
        display: none;
    }
    
    .topTitle {
        text-align: center;
        padding: 0;
        font-size: 30px;
    }
    
    #responsiveCarousel {
        display: block;
    }
    
    #responsiveCarousel p {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        width: 80vw;
        margin: 0 auto;
        position: relative;
    }

    #responsiveCarousel img {
        height: 75px;
        margin-bottom: 45px;
    }
    
    .collectionContainer {
        display: none;
        width: 100%;
    }
    
    .responsiveContainer {
        text-align: center;
        display: block;
        height: 200px;
    }
    
    .containerItem {
        width: 200px;
        margin: 10px;
    }
    
    #topResponsive {
        position: relative;
    }
    
    #bottomResponsive {
        position: relative;
    }
    
    #facts {
        height: 280vh;
        text-align: center;
    }
    
    #responsiveFacts {
        position: relative;
        top: 20vh;
        text-align: center;
        padding: 0 2vh;
    }
    
    #responsiveFacts p {
        font-size: 16px;
    }
    
    #topEntry {
        margin-top: 150px;
        height: 60vh;
    }
    
    #middleEntry, #bottomEntry {
        margin-top: 100px;
        height: 60vh;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 16px;
    }

    .modalDialog img {
        height: 150px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 18px;
    }
    
    #whomadethis {
        height: 130vh;
    }
    
    #whomadethis div {
        width: 100vw;
        text-align: center;
    }
    
    #whomadethis #profile {
        height: 150px;
        position: relative;
        top: 20vh;
        margin: 0 auto;
        float: none;
        left: 1vh;
    }
    
    iframe {
        position: relative;
        left: -5vw;
    }

    #whomadethis .bottomTitle {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 16px;
        margin: 0 auto;
        width: 70vw;
        position: relative;
        left: 1vh;
    }
    
    #beforeyougo h1 {
        padding: 30px 10px;
        font-size: 20px;
    }
    
    input[name="comments"] {
        border: none;
        padding-bottom: 2em;
    }

    input[type="submit"] {
        width: 100px;
        height: 35px;
        font-size: 14px;
    }
}

@media only screen and (width: 768px) and (height: 1024px) {
    .navItem {
        display: none;
    }
    
    #openIcon {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 20px;
    }
    
    #launch {
        background-size: cover;
        background-position: -150px 50px;
    }
    
    #launch p {
        font-size: 36px;
        top: 45vh;
        margin: 0 5%;
    }
    
    #logo {
        font-size: 24px;
        margin-left: 20px;
    }
    
    header.smaller a#logo {
        font-size: 20px;
        margin-top: 15px;
    }
    
    header {
        height: 70px;
    }
    
    .title {
        font-size: 30px;
        top: 15vh;
    }
    
    .columnContainer {
        display: none;
    }
    
    h2 {
        display: none;
    }
    
    #about {
        height: 150vh;
    }
    
    .topTitle {
        text-align: center;
        padding: 0;
        font-size: 30px;
    }
    
    #responsiveCarousel {
        display: block;
        position: relative;
        top: 10vh;
    }
    
    #responsiveCarousel p {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        width: 80vw;
        margin: 0 auto;
        position: relative;
    }

    #responsiveCarousel img {
        height: 75px;
        margin-bottom: 45px;
    }
    
    .collectionContainer {
        display: none;
        width: 100%;
    }
    
    .responsiveContainer {
        text-align: center;
        display: block;
        height: 200px;
    }
    
    .containerItem {
        width: 200px;
        margin: 5px;
    }
    
    #topResponsive {
        position: relative;
    }
    
    #bottomResponsive {
        position: relative;
    }
    
    #facts {
        text-align: center;
    }
    
    #responsiveFacts {
        position: relative;
        top: 20vh;
        text-align: center;
        padding: 0 22vw;
    }
    
    #responsiveFacts p {
        font-size: 16px;
    }
    
    #topEntry {
        height: 30vh;
    }
    
    #middleEntry, #bottomEntry {
        margin-top: 100px;
        height: 30vh;
    }
    
    .modalDialog {
        position: fixed;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        -ms-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
    
    .modalDialog p {
        text-align: justify;
        color: white;
        position: relative;
        font-family: "Roboto Slab", serif;
        font-size: 22px;
        width: 75%;
        margin: 0 auto;
        left: -10px;
    }

    #modal6 p {
        margin-top: 10vh;
        font-size: 16px;
    }

    .modalDialog img {
        height: 150px;
        margin-top: 20vh;
        margin-bottom: 20px;
    }

    .modalDialog ol {
        text-align: left;
        width: 80vw;
        margin: 30px auto;
        font-size: 18px;
    }
    
    #whomadethis div {
        width: 100vw;
        text-align: center;
    }
    
    #whomadethis #profile {
        height: 150px;
        position: relative;
        top: 20vh;
        left: 1vh;
        margin: 0 auto;
        float: none;
    }

    #whomadethis .bottomTitle {
        text-align: justify;
        color: white;
        font-family: "Roboto Slab", serif;
        font-size: 24px;
        margin: 0 auto;
        width: 70vw;
        left: 1vh;
        position: relative;
    }
    
    #beforeyougo h1 {
        padding: 30px 10px;
        font-size: 30px;
    }
}
