
:root {
    --theme-color-grey: #DFE0E0;
    --theme-color-green: #1D473A;
    --theme-color-brown: #AA7751;
    --theme-color-white: #f5f5f5;
    --text-color-black: #010203;
    --text-color-grey: #666666;
    --text-color-white: #f5f5f5;
}

* {
    box-sizing: border-box;
}
  
html {
	scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: lighter;
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
}

h1 {
    font-family: 'Montserrat classic', sans-serif;
    font-weight: lighter;
    color: var(--theme-color-brown);
}
h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: lighter;
    color: var(--theme-color-brown);
    margin-bottom: 30px;
}
h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: var(--theme-color-brown);
    margin-bottom: 5px;
}
h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: lighter;
    font-size: 13px;
    color: var(--text-color-black);
    margin-bottom: 15px;
}

.container {
    margin-left: 200px;
}

#sideNav {
    height: 100%;
    width: 200px;
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    background-color: var(--theme-color-grey);
}
#navContent {
    width: 100%;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    color: var(--text-color-white);
}

#navList {
    width: 200px;
    list-style: none;
    color: var(--text-color-white);
    z-index: 10;
}

#navList > li {
    margin-bottom: 10px;
}

#navList > li > a {
    color: var(--text-color-black);
    text-decoration: none;
}
#navList > li > a:visited {
    color: var(--text-color-black);
}

#navList > li > a:active {
    color: var(--text-color-black);
}

#navList > li > a:hover {
    color: var(--text-color-grey);
    transition: 300ms;
}
.navLink {
    font-size: 18px;
}

#content {
    position: relative;
    margin-left: 100px;
    margin-right: 100px;
}   

.profilePicture {
    position: absolute;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    width: 200px;
}

.profilePictureImage {
    height: 150px;
    width: 150px;
    border-radius: 100px;
    z-index: 1;
    background: url("../img/profile.jpg");
    background-position: center;
    background-size: contain;
}
.full {
    display: block;
}
.small {
    display: none;
}

#entryImage {
    height: 100vh;
    background: var(--theme-color-white);
    display: flex;
    align-items: center;
}
.entryText {
    margin-left: 100px;
    margin-right: 100px;
}
.description {
    max-width: 500px;
    text-overflow: wrap;
}
.squares {
    position: absolute;
    height: 40vh;
    width: 100vw;
    max-width: 100%;
}
.title {
    font-size: medium;
}
.me {
    height: 100px;
    padding-top: 50px;
}
.name {
    font-size: 50px;
}
.heroImage {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainSquare {   
    position: absolute;
    background-color: var(--theme-color-brown);
    height: 100%;
    width: 100%;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 6%);
}

#secondarySquare {
    position: absolute;
    background-color: var(--theme-color-green);
    height: 100%;
    width: 25%;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.fullBlock {
    min-height: 300px;
    padding: 0;
    margin: 0;
    padding-top: 30px;
}

.blockTitle {
    font-family: 'Montserrat classic', sans-serif;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    font-size: 25px;
}

.textField {
    /* padding-top: 10px;
    padding-bottom: 10px; */
    min-height: 250px;
}
.openNav {
    visibility: hidden;
}

@media only screen and (max-width: 1024px) {
    .squares {
        height: 25vh;
    }
    #content, .entryText {
        margin-left: 450x;
        margin-right: 50px;
    }
}
@media only screen and (max-width: 600px) {
    .container {
        margin: 0;
    }

    #content, .entryText {
        margin-left: 30px;
        margin-right: 30px;
    }
    #mainSquare {
        display: none;
    }
    .squares {
        height: 20vh;
        z-index: 4;
    }
    .openSquare {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }

    #navContent {
        padding-bottom: 20px;
        margin-left: 30px;
        width: 100%;
        justify-content: left;
    }

    #navList {
        /* padding: 10px; */
        visibility: hidden;
    }

    #sideNav {
        position:fixed;
        background: var(--theme-color-brown);
        height: auto;
        width: 100%;
        z-index: 5;
        align-items: baseline;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 6%);
        transition: clip-path 100ms ease-in-out;
        flex-direction: column;
    }
    .navOpen {
        animation: navOpen 10ms;
        animation-fill-mode: forwards;  
    }

    .full {
        display: none;
    }
    .small {
        display: block;
    }
    .openNav {
        display: flex;
        justify-content: flex-end;
        font-size: 30px;
        visibility: visible;
        width: 100%;
    }

    .navLink {
        font-size: 20px;
        color: var(--text-color-white);
    }

    @keyframes navOpen {
        from { visibility: hidden; }
        to { visibility: visible; }
      }

    .scrollNav {
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%) !important;
    }

    .openScrollNav {
        clip-path: polygon(0 0, 100% 0, 100% 120%, 0 120%) !important;
    }

    .fullBlock:before {
        display: block;
        content: " ";
        margin-top: -30px;
        height: 60px;
        visibility: hidden;
        pointer-events: none;
    }
    .fullBlock, .me {
        padding: unset;
    }
    .hamburgerMenu {
        padding-top: 7px;
        padding-right: 10px;
        color: var(--text-color-white);
        font-size: 40px;
    }
}

