body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

.title {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 2em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
}

.title-line {
   width: 60%;
   border-bottom: 1px solid black;
   margin: auto;
}

.navbar {
    height: 5vh;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 50%;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    font-family: 'Nixie One', cursive;
}

.nav-links li a {
    text-decoration: none;
    font-size: 1.2em;
    cursor: pointer;
    color: black;
}

.nav-links li:hover {
    transform: scale(1.2);
    transition: all .3s ease-in-out;
}

.section1 {
    background-color: #f1f1f1;
    padding-top: 2em;
}


@media screen and (max-width: 800px) {

    .title, .title-line {
        display: none;
    }

    .line {
        width: 30px;
        height: 3px;
        margin: 5px;
        background: black;
    }

    .navbar {
        position: relative;
        height: 7vh;
    }

    .hamburger {
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
    }

    .nav-links {
        position: fixed;
        background: white;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(100px at 90% -11%);
        -webkit-clip-path: circle(100px at 90% -11%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -11%);
        -webkit-clip-path: circle(1000px at 90% -11%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
    }

    .mav-links li a {
        font-size: 25px;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    li.fade {
        opacity: 1;
    }
}

.section1 {
    background-color: #f1f1f1;
    padding-top: 4em;
    text-align: center;
}

.section1 h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 3em;
    text-transform: uppercase;
    padding-bottom: 1em;
}


.section3 {
    width: 100%;
    height: auto;
}

.split {
    display: flex;
    flex-direction: column;
    background: white;
}

.in-split {
    text-align: center;
}

.in-split h1 {
    text-transform: uppercase;
    font-size: 2em;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    padding-top: 30%;
}

.tech-desc {
    align-items: center;
    font-family: 'Raleway', sans-serif;
    margin-top: 2em;
    margin-left: 4em;
    margin-right: 4em;
}

.tech-desc img {
    padding-top: 0.7em;
}


@media screen and (min-width: 800px) {
    .split {
        flex-direction: row;
    }

    .split > * {
        flex-basis: 100%;
    }

    .split > * + *{
        margin-left: 2em;
    }

    .split1 {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 800px) {
    .in-split {
        padding-bottom: 3em;
    }
}







.section5 {
    background: #f1f1f1;
    text-align: center;
    padding-bottom: 3em;
}

.section5 h1 {
    text-transform: uppercase;
    font-size: 3em;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    padding-top: 2em;
    padding-bottom: 0.4em;
}

.section5 p {
    font-size: 1em;
    font-family: 'Raleway', sans-serif;
    padding-bottom: 1em;
}
.section5 a{
    text-decoration: none;
    color: #444444;
}

.section6 {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    font-family: 'Open Sans', sans-serif;
}

.section6 span {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
}
@media screen and (max-width: 800px) {
    .section6 {
        font-size: 0.5em;
    }
}
