html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

section {
    background-color: white;
}

.hero {
    height: 100vh;
    color: white;
    font-size: 40px;
    background: radial-gradient(ellipse at bottom, #C51F1E -200%, #063170 100%);   
}

footer {
    height: 500px;
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}

nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    scroll-behavior: smooth;
}

ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 28px;    
}

.nav-subs:hover {
    color: #06E19E;  
    font-weight: bold;   
}

li {
    text-decoration: none;
}

h1 {
    font-size: 90px;
    margin: 0;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 25px;
}

p {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
}

.subtext {
    font-size:15px;
    font-weight: 300;
    margin: 10px;
}

.hero-area {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    margin-left: 80px;
    margin-bottom: 200px ;
}

.button {
    width: 200px;
    height: 50px;
    border-radius: 30px;
    background-color: #06E19E;
    font-weight: bold;
    text-align: center;
    font-size: 35px;
    padding: 5px;
    margin-top: 20px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

.button a {
    color: #063170;
}

.button2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 20px;
    border-radius: 50px;
    font-weight: bold;
    color: #063170;
    background: #06E19E;
    font-size: 20px;
    padding: 5px ;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;   
}

.button2-ul {
    padding-left: 0px;
}

.button2:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.button:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);   
}

.footer {
    font-size: 30px;
}

.footer:hover {
    color: #06E19E;
    font-weight: bold;
}

.socials {
    padding-bottom: 230px;
}

.social {
    margin: 30px;
}

.information {
    margin-right: 50px;
}

.sub-section {
    display: flex;
    justify-content: space-between;
    padding: 80px;
}

.sub-section-three {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    padding-top: 0px;
    background-color: #06E19E;
    border-radius: 200px;
}

.sub-section-three h4 {
    font-size: 30px;
    margin-bottom: 0px;
}

.sub-section-three h3 {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.sub-section-three h4, .sub-section-three p, .sub-section-three h3 {
    margin-left: 140px;
    margin-right: 140px;
}

.sub-section-two {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    padding: 80px;
    background-color: rgb(198, 208, 224);
}

.headshot {
    width: 400px;
    height: 440px;
    border-radius: 100px;
    margin-top: 150px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-card {
    width: 500px;
    height: 700px;
    box-shadow: 5px 5px 20px grey;
    margin: 20px;
    border-radius: 25px;
    background-color: white;
    margin-bottom: 60px;
}

.project-container {
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.project-image {
    flex-shrink: 1;
    margin-top: 25px;
    width: 400px;
    height: 300px;
    border-radius: 25px;
    padding: 20px;
}

hr {
    margin-left: 30px;
    margin-right: 30px;
}

.project-link {
    text-decoration: none;
    color: orangered;
}

a {
    text-decoration: none;
    color: white;
}

.navbar {
    background-color: #04224e;

}

.navbar a {
    color: white;
}

.hamburger {
    display: none;
}

.skills-section {
    display: flex;
    justify-content: space-between;   
}

.skills {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    font-size: 28px; 
}

.social svg  {
    fill: white;
}

.social:hover p , .social:hover svg {
    transform: scale(1.15);
    fill: #06E19E;
    color: #06E19E;
    margin-top: -5px;
}
.social p {
    font-size: 15px;
    text-align: center;
    text-decoration: overline;
    color:white;
    margin-top: -12px;
}

/*Mobile*/
@media only screen and (max-width: 1280px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }

    .hamburger {
        position: relative;
        color: white;
        display: block;
        width: 90px;
        cursor: pointer;
        margin: 50px 40px;
        appearance: none;
        background: none;
        outline: none;
        border: none; 
    }

    .hamburger .bar, .hamburger::after, .hamburger::before {
        content: '';
        display: block;
        width: 150%;
        height: 15px;
        background-color: white;
        margin: 15px 0px;
        transition: 0.4s;
    }
    
    .hamburger.is-active::before {
        transform: rotate(-45deg) translate(-30px, -15px);   
    }

    .hamburger.is-active::after {
        transform: rotate(45deg) translate(-55px, -15px);  
    
    }

    .hamburger.is-active .bar {
        opacity: 0;
        
    }

    .navbar ul {
        display: none;
        margin: 0;
        font-size: 50px;   
    }

    li {
        margin: 60px;   
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
    }

    .nav-list {
        position: flex;
        transition: 0.5s; 
    }

    .nav-list.show {
        left: 0;
        display: block;
    }

    .project-card {
        width: 800px;
        height: 1000px;
        box-shadow: 5px 5px 20px grey;
        margin: 10px;
        border-radius: 25px;
        background-color: white;
        margin-bottom: 60px;
    }

    .project-card h4 {
        margin: 0;
        font-size: 40px;
    }

    .project-card p {
        font-size: 25px;
    }

    .project-image {
        margin-top: 25px;
        width: 700px;
        height: 500px;
        border-radius: 25px;
        padding: 20px;
    }

    .button {
        width: 200px;
        height: 50px;
        border-radius: 30px;
        background-color: #06E19E;
        font-weight: bold;
        text-align: center;
        font-size: 30px;
        padding-top: 5px;
        margin-top: 20px;
        text-transform: uppercase;
        box-shadow: none;
        -webkit-transition-duration: none;
        transition-duration: none;
        -webkit-transition-property: none;
        transition-property: none;
    }

    .button:active {
        background-color: #06E19E;
    }

    .button:hover {
        box-shadow: none;
        -webkit-transform: none;
        transform: none;    
    }

    .button2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 20px;
        border-radius: 50px;
        font-weight: bold;
        background: #06E19E;
        font-size: 30px;
        padding: 35px ;
        text-decoration: none;
        text-transform: uppercase;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        -webkit-transition-property: none;
        transition-property: none;
    }

    .button2-ul {
        margin-left: 100px;
    }

    .button2-ul a {
        padding: 30px;
        margin-left: 80px;
    }

    .sub-section {
        display: flex;
        flex-wrap: wrap;
    }

    .headshot {
        display: flex;
        height: auto;
        max-width: 100%;
        margin-top: 40px;
        width: 1037px;
       
    }
}
