*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    overflow-x: hidden;
}
:root {
    --one: #F8F9FA;
    --two: #E9ECEF;
    --three: #DEE2E6;
    --four: #CED4DA;
    --five: #ADB5BD;
    --six: #6C757D;
    --seven: #495057;
    --eight: #343A40;
    --nine: #212529;
}
@font-face {
    src: url(fonts/LeagueSpartan-VariableFont_wght.ttf);
    font-family: spartan;
}
.page-wrapper {
    width: 100%;
    height: auto;
}

/******************/
/*Top Hero Styling*/
/******************/
.nav-bar {
    width: 100%;
    height: 80px;
    position: absolute;
}
.inner-nav {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
.nav-logo {
    position: absolute;
    width: auto;
    height: auto;
}
.nav-links {
    position: absolute;
    right: 0;
    height: auto;
    overflow-y: hidden;
}
.nav-links li {
    height: auto;
    float: left;
    margin-left: 40px;
    align-items: center;
}
.nav-links li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: #F8F9FA;
    font-size: 20px;
    font-family: spartan;
    font-weight: 900;
}

.top-hero {
    width: 100vw;
    height: 100vh;
    background: #343A40;
}
.top-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 300px;
}
.top-hero-text h1 {
    font-size: 80px;
    font-family: spartan;
    font-weight: bold;
    color: #F8F9FA;
    margin-bottom: 30px;
}
.top-hero-text h2 {
    font-size: 40px;
    font-family: spartan;
    font-weight: lighter;
    font-style: italic;
    color: #F8F9FA;
}
.logo-mask {
    position: absolute;
    top: calc(100% - 593px);
    left: 50%;
    transform: translateX(-50%);
}
.logo-mask img {
    width: 800px;
}
/****************/
/*Middle Section*/
/****************/
.intro-mask {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    background: var(--two);
}
.intro-text {
    width: 1000px;
    height: auto;
    text-align: center;
}
.intro-text h1 {
    font-size: 50px;
    font-family: spartan;
    font-weight: bolder;
    color: var(--nine);
    margin-bottom: 30px;
}
.intro-text p {
    font-size: 30px;
    font-family: spartan;
    font-weight: lighter;
}
.languages-wrapper {
    width: 100%;
    height: auto;
    background: var(--two);
}
.inner-languages {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.languages-title {
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
}
.languages-title h1 {
    font-size: 40px;
    font-family: spartan;
    font-weight: bolder;
    color: var(--eight);
}
.language-container {
    width: 100%;
    height: auto;
    text-align: center;
}
.language {
    display: inline-block;
    width: 250px;
    height: 250px;
    margin: 25px;
}
.language img {
    width: 246px;
    height: 246px;
}
.frameworks-title {
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.frameworks-title h1 {
    font-size: 40px;
    font-family: spartan;
    font-weight: bolder;
    color: var(--eight);
}
.works {
    width: 100%;
    height: auto;
    background: var(--two);
}
.inner-works {
    width: 1200px;
    height: auto;
    margin: 0 auto;
}
.works-text {
    width: 100%;
    height: 200px;
    margin-top: 150px;
    text-align: center;
}
.works-text h1 {
    font-size: 40px;
    font-family: spartan;
    font-weight: bolder;
    color: var(--nine);
    margin-top: 40px;
    margin-bottom: 20px;
}
.works-text h2 {
    font-size: 25px;
    font-family: spartan;
    font-weight: lighter;
    color: var(--nine);
}
.works-list {
    display: block;
    width: 100%;
    height: calc(100% - 300px);
}

/*Work Classes*/
.work {
    display: table;
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    text-align: center;
}
.picturehalf {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 100%;
}
.texthalf {
    display: inline-block;
    align-items: center;
    width: 50%;
    height: 100%;
}
.picture-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 450px;
    margin-top: -225px;
    margin-left: -250px;
    transition: 0.3s;
}
.picture-container.active {
    margin-top: -240px;
    margin-left: -265px;
}
.click-here {
    position: absolute;
    bottom: 0;
    margin-bottom: 50px;
    margin-left: 30px;
    font-size: 30px;
    font-family: spartan;
    font-weight: bolder;
    color: grey;
    transition: 0.3s;
}
.click-here.active {
    color: #f3f4f6;
    margin-bottom: 60px;
    margin-left: 40px;
}
.picture-mask {
    background: rgba(83, 83, 83, 0);
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.picture-mask.active {
    background: rgba(83, 83, 83, 0.50);
}
#picture1 {
    background-image: url("pictures/partypatrol-ss.png");
    background-size: cover;
    background-position: center;
}
#picture2 {
    background-image: url("pictures/entertainment-ss.png");
    background-size: cover;
    background-position: center;
}
#picture3 {
    background-image: url("pictures/nycconsolkings.jpg");
    background-size: cover;
    background-position: center;
}
#picture4 {
    background-image: url("pictures/firetruck.jpg");
    background-size: cover;
    background-position: center;
}
.shadow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 450px;
    margin-top: -225px;
    margin-left: -250px;
    background: #181818;
}
.work-text-container {
    position: relative;
    text-align: left;
    width: calc(100% - 40px);
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
}
.work-text-container h1 {
    font-family: spartan;
    font-weight: bold;
    color: #181818;
    font-size: 60px;
    margin-top: 50px;
}
.work-text-container h2 {
    font-family: spartan;
    font-weight: 400;
    color: #181818;
    font-size: 21px;
    margin-top: 30px;
    line-height: 1.5;
}
.work-text-container button {
    position: absolute;
    width: 150px;
    height: 50px;
    bottom: 0;
    left: 50%;
    margin-bottom: 100px;
    margin-left: -75px;
}

/***************/
/*Media Queries*/
/***************/
@media screen and (max-width: 1300px){
    .inner-nav {
        width: 94%;
    }
    .inner-languages {
        width: 100%;
    }
    .inner-works {
        width: 100%;
    }
}
@media screen and (max-width: 1000px){
    .intro-text {
        width: 94%;
    }
}
@media screen and (max-width: 900px){
    .top-hero-text {
        width: 90%;
    }
}
@media screen and (max-width: 800px){
    .logo-mask img{
        width: 600px;
    }
    .logo-mask {
        top: calc(100% - 445px);
    }
    .intro-text h1 {
        font-size: 40px;
    }
    .intro-text p {
        font-size: 25px;
    }
    .intro-mask {
        height: 400px;
    }
}
@media screen and (max-width: 700px){
    .language {
        width: 150px;
        height: 150px;
    }
    .language img {
        width: 146px;
        height: 146px;
    }
    .languages-title h1{
        font-size: 30px;
    }
    .frameworks-title h1{
        font-size: 30px;
    }
    .work {
        height: 200px;
    }
    .picturehalf {
        width: 250px;
        height: 250px;
    }
    .texthalf {
        width: 250px;
        height: 250px;
    }
    .shadow-container {
        width: 250px;
        height: 200px;
        margin-top: -100px;
        margin-left: -125px;
    }
    .picture-container {
        width: 250px;
        height: 200px;
        margin-top: -100px;
        margin-left: -125px;
    }
    .picture-container.active {
        margin-top: -110px;
        margin-left: -135px;
    }
    .work-text-container h1 {
        font-size: 30px;
    }
    .work-text-container h2 {
        font-size: 13px;
    }
}
@media screen and (max-width: 600px){
    .logo-mask img{
        width: 400px;
    }
    .logo-mask {
        top: calc(100% - 297px);
    }
    .top-hero-text h1 {
        font-size: 60px;
    }
    .top-hero-text h2 {
        font-size: 25px;
    }
    .intro-text h1 {
        font-size: 30px;
    }
    .intro-text p {
        font-size: 20px;
    }
    .intro-mask {
        height: 300px;
    }
    .nav-links {
        display: none;
    }
}
@media screen and (max-width: 400px){
    .logo-mask img{
        width: 250px;
    }
    .logo-mask {
        top: calc(100% - 186px);
    }
    .top-hero-text h1 {
        font-size: 40px;
    }
    .top-hero-text h2 {
        font-size: 20px;
    }
}