@import 'https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-text: #86ddff;
    --dark-blue: #002b8f;
    --mid-blue: #3ba0ff;
}

html {
    font-family: "Merriweather", sans-serif;
}

a {
    text-decoration: none;
}

/* NAVBAR section */

#mobile-nav {
    display: none;
}

.nav-bar {
    position: absolute;
    z-index: 2;
    width: 100%;
}

ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    list-style: none;
    height: 10vh;
    background-color: rgba(100, 100, 100, 0.2);
}

li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

#name {
    color: var(--blue-text);
    font-size: 30px;
    font-weight: bold;
}

/* HERO SECTION */

.container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.image-container {
    position: relative;
    background-image: url(images/purple.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    margin-top: 0vh;
    animation: scale 15s;
}
@keyframes scale {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    position: absolute;
    top: 35%;
    left: 10%;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

.firstWord {
    color: var(--blue-text);
}

.resume-cta {
    border: 2px solid var(--blue-text);
    width: 175px;
    padding: 25px;
    margin-top: 20px;
}

.resume-text {
    color: #fff;
}

.resume-cta:hover {
    background-color: rgba(100, 100, 100, 0.4);
}

/* PROJECT SECTION */

.project-container {
    width: 100%;
    height: auto;
}

.project-header {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.projects {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
}

.hedgehog {
    width: 400px;
    height: 400px;
    background: #fff;
    position: relative;
    box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 50px;
    background-image: url("images/modelHedgehogResult.jpg");
    background-size: cover;
    background-position: center;
}

.NASA {
    width: 400px;
    height: 400px;
    background: #fff;
    position: relative;
    box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 50px;
    background-image: url("images/nasaApp.png");
    background-size: cover;
    background-position: center;
}

.healing {
    width: 400px;
    height: 400px;
    background: #fff;
    position: relative;
    box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 50px;
    background-image: url("images/NaturalHealingHome.jpg");
    background-size: cover;
    background-position: center;
}

.loader {
    width: 400px;
    height: 400px;
    background: #fff;
    position: relative;
    box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 50px;
    background-image: url("images/funLoader.png");
    background-size: cover;
    background-position: center;
}

.text-container {
    position: absolute;
    height: 75px;
    width: 100%;
    z-index: 2;
    left: 0;
    bottom: 0;
    background-color: #fff;
    overflow: hidden;
}

.text-container:hover {
    height: 270px;
}

.name {
    margin-top: 10px;
    color: rgb(153, 0, 240);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
}

.content {
    padding: 30px 5px;
    color: rgb(153, 0, 240);
}

.button {
    border: 5px solid var(--blue-text);
    width: 160px;
    box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 50px;
    margin-left: 115px;
}

/* ABOUT SECTION */

.aboutContainer {
    margin: 10%;
    width: 80%;
    height: auto;
    background-color: #f0d9ff4d;
    box-shadow: 15% 7px 30px 7px rgba(0, 0, 0, 0.2);
} 

.aboutSection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutImage {
    height: 450px;
    width: 400px;
    background-image: url(images/coffee.jpg);
    background-size: cover;
    background-position: center;
}

.aboutText {
    height: auto;
    width: 40%;
    font-size: 1.5rem;
    margin-left: 100px;
}

.socialIcons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    width: 30%;
    margin: 10% 35% 5% 35%;
    color: black;
}

.mail {
    width: auto;
    color:black;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 5%;
    font-family: "lato";
}

/* MOBILE VIEW */

@media (max-width: 768px) {
    #nav {
        display: none;
    }

    #mobile-nav {
        display: block;
    }

    .mobile-nav-bar {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 5;
    }

    .mobile-nav-bar i {
        color:rgba(0, 0, 0, 0.597)
    }

    ul {
        background-color: #f0d9ff77;
    }


    .hedgehog {
        width: 250px;
        height: 400px;
        background: #fff;
        position: relative;
        box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin: 50px;
        background-image: url("images/modelHedgehogResult.jpg");
        background-size: cover;
        background-position: center;
    }

    .NASA {
        width: 250px;
        height: 400px;
        background: #fff;
        position: relative;
        box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin: 50px;
        background-image: url("images/nasaApp.png");
        background-size: cover;
        background-position: center;
    }

    .healing {
        width: 250px;
        height: 400px;
        background: #fff;
        position: relative;
        box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin: 50px;
        background-image: url("images/NaturalHealingHome.jpg");
        background-size: cover;
        background-position: center;
    }
    
    .loader {
        width: 250px;
        height: 400px;
        background: #fff;
        position: relative;
        box-shadow: 15px 7px 30px 7px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin: 50px;
        background-image: url("images/funLoader.png");
        background-size: cover;
        background-position: center;
    }
    .name {
        font-size: 1.5rem;
        margin-top: 15px;
    }
    
    .aboutContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0d9ff4d;
        box-shadow: 15% 7px 30px 7px rgba(0, 0, 0, 0.2);
    }

    .aboutImage {
        margin-top: 20px;
        height: 300px;
        width: 225px;
    }

    .aboutText {
        margin-left: 20px;
        width: 100%;
        font-size: 0.75rem;
    }

    .socialIcons i {
        font-size: 2rem;
        padding: 10px;
        margin-left: -10px;
    }
    .mail {
        margin-bottom: 15%;
    }
}
