body {
    position: relative;
    overflow-x: hidden;
    background: #f7f7ff !important;

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
     user-select: none;   
}

ol, ul {
    list-style: none;
}

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

.tnb-spacer {
    padding-top: 100px;
    padding-bottom: 100px;
}

.side-spacer {
    padding-left: 50px;
    padding-right: 50px;
}

/*  Header and nav bar */
#header {
    position: fixed;
    top: 0;
	left: 0;
    right: 0;
    height: 85px;
    background: white;
    z-index: 100;
}

.header-divider {
    padding-top: 85px;
}

.logo {
	position:relative;
	padding-left: 65px;
}

.nav-bar {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
	padding-top: 20px;
    padding-bottom: 20px;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.2);
    
}

.burger{
    width: 25px;
    height: 3px;
    background: #04091e;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: #04091e;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.burger::before {
    transform: translateY(-9px);
}

.burger::after {
    transform: translateY(9px);
}

.burger.open {
    transform: translateX(50px);
    background: transparent;
}

.burger.open::before {
    transform: rotate(45deg) translate(-35px, 35px);
}

.burger.open::after {
    transform: rotate(-45deg) translate(-35px, -35px);
}

@media (min-width: 691px) {
    .menu-btn {
        display: none;
    }

    .nav-menu{
        padding-right: 75px;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu a {
        border: 2px solid white;
        padding: 5px 12px 5px 12px;
        display: inline-block;
        color: black;
        font-weight: 500;
        font-size: 12px;
        text-align: center;
        text-transform: uppercase;
        outline: none;
    }

    .project-content {
        display: none;
        position: absolute;
        background-color: white;
        transform: translateX(-55px);
        flex-direction: column;
        box-shadow: 0 4px 2px -2px rgba(0,0,0,.2);
        width: 200px;
        height: 100px;
    }
    
    .projects:hover .project-content {
        display: flex;
        animation: fadeIn ease 0.5s;
    }
    
    @keyframes fadeIn {
        0% {opacity:0;}
        100% {opacity:1;}
    }

    .resume-button {
        background-color: rgb(100, 100, 100);
        border: 2px solid black !important;
        color: white !important;
        margin-left: 5px;
        text-decoration: none;
        font-size: 20px;
        border-radius: 15px;
        opacity: 0.4;
        transition: 0.3s;
    }
    
    .resume-button:hover {opacity: 1}
}

@media (max-width: 690px) {
    .menu-btn {
        position: relative;
        padding-right: 55px;
        z-index: 2;
        cursor: pointer;
    }

    .nav-menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 35px;
        display: flex;
        flex-direction: column;
        text-align: center;
        background-color: #d3d3d3;
        transform: translateY(-200px);
        transition: transform 0.5s ease-in;
        opacity: 0.95;
        z-index: 1;
    }

    .nav-menu a {
        padding: 12px 12px 12px 12px;
        display: inline-block;
        color: black;
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        outline: none;
        opacity: 1;
    }

    .project-content {
        display: none;
    }
    
    .project-content.open {
        display: block;
    }

    .project-arrow.open {
        transform: rotate(180deg);
        transition: transform 0.3s ease-in;
    }
    
    .resume-button {
        padding: 10px 10px 10px 10px !important;
    }
}

.nav-active {
    transform: translateY(0px);
}

/*  Intro Styles */
.intro {
    background: #f7f7ff;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}

.intro .fitscreen {
    min-height: calc(93vh - 85px);
}

.intro h1{
    font-size: clamp(40px, 5vw, 70px);
}

.intro h4{
    font-size: clamp(25px, 4vw, 50px);;
}

.secondary-message {
    margin-top: 10px;
    margin-bottom: 20px;
}

.intro-icons {
    color: rgb(49, 49, 49);
}

.pb-10 {
    padding-bottom: 10rem;
}

/*  Footer Styles */
.footer-area {
	background-color: #04091e;
	height: 9vh;
}
.footer-text {
	text-align: center;
	padding: 22px 0;
	color: #D3D3D3;
}