header{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
.logo {
    width: 175px;
    line-height: 60px;
}

nav {
    position: fixed;
    width: 100%;
    line-height: 60px;
    z-index: 250;
}

nav ul {
    line-height: 60px;
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0;
    text-align: center;
    margin: 0;
    padding-right: 40px;
    transition: 2s;
}

nav.black ul {
    background: #000;
}

nav ul li {
    display: inline-block;
    padding: 2px 45px;
    z-index: 10;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 17px;
}
.menu a:hover:not(.logo-link) {
    border-bottom: 2px solid white;
}
.menu a.active {
    border-bottom: 2px solid white;
}
.menu-icon {
    line-height: 60px;
    width: 100%;
    background: #000000;
    text-align: right;
    box-sizing: border-box;
    padding: 15px 24px;
    cursor: pointer;
    color: #fff;
    display: none;
}
.menuText{
    color: white;
    position: absolute;
    width: 60%;
    top: 35%;
    left: 3%;
}
.longMenuText{
    color: white;
    position: absolute;
    width: 60%;
    top: 28%;
    left: 3%;
}
.longMenuTextSplit{
    display: none;
}
@media(max-width: 1024px) {
    nav ul {
        max-height: 0px;
        background: #000;
    }

    nav.black ul {
        background: #000;
    }

    .showing {
        max-height: 34em;
    }

    nav ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 24px;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }
    .longMenuText h1{   
        font-size: 55px;
    }
    .menuText h1{
        font-size: 65px;
    }
}
@media(max-width: 600px){
    .menuText h1{
        font-size: 50px;
    }
    .longMenuText h1{
        font-size: 40px;
    }
    .longMenuText{
        display:none;
    }
    .longMenuTextSplit{
        display: block;
        color: white;
        position: absolute;
        width: 80%;
        top: 28%;
        left: 3%;
    }
    .longMenuTextSplit h1{
        font-size: 40px;
    }
}
