body {
    font-family: 'Poppins', sans-serif;
}

section{
    background-color: white;
}

.hero {
    background-color: black;
    height: fit-content;
    color: white;
    font-size: 40px;
}


footer {
    color:white;
    text-align: center;
    padding: 40px;
    background-color: black;
    height:150px;
}

nav {
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.nav-link {
    text-decoration: none;
    color: white;
}


ul {
    display: flex;
    list-style-type: none;
    width: 600px;
    justify-content: space-around;
    font-size: 30px;
}

ul.show {
    display: block;
}

li {
    /* width: 200px; */
    text-decoration: none;
    font-weight: 600;
}

.hero-area {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-family: 'Edu TAS Beginner', cursive;
    font-size: 150px;
    margin: 0;
}

.short-description {
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 600;
    margin: 0;
    margin-left: 5px;
}


.hero-text {
    margin-left: 5%;
    margin-bottom: 200px;
}

.hero-image {
    align-self: center;
    width: 50%;
    margin-bottom: 75px;
}

.astronaut {
    width: 100%;
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 2s infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.socials {
    margin-bottom: 250px;
}

.social {
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.button {
    width: 300px;
    height: 70px;
    border-radius: 30px;
    background-color: coral;
    text-align: center;
    font-size: 40px;
    padding-top: 7px;
    margin-top: 20px;
}

.button:hover {
    background-color: #ef744b;
}

.button:active {
    background-color: #A9A9A9;
    color: #808080;
}

.logo {
    height: 100px;
    margin-left: 10px;
}

@media only screen and (max-width: 1350px) {
    h1 {
        font-family: 'Edu TAS Beginner', cursive;
        font-size: 100px;
        margin: 0;
    }

    .short-description {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        font-weight: 600;
        margin: 0;
        margin-left: 5px;
    }

    .button {
        width: 175px;
        height: 35px;
        border-radius: 15px;
        background-color: coral;
        text-align: center;
        font-size: 22px;
        padding-top: 3px;
        margin-top: 10px;
    }

    .hero-image {
        align-self: center;
        width: 50%;
        margin-bottom: 70px;
    }
    
}

@media only screen and (max-width: 1000px) {
    .hero {
        background-color: black;
        height: 600px;
        color: white;
        font-size: 40px;
    }

    .button {
        width: 200px;
        height: 40px;
        border-radius: 15px;
        background-color: coral;
        text-align: center;
        font-size: 25px;
        padding-top: 3px;
        margin-top: 10px;
    }

    h1 {
        font-family: 'Edu TAS Beginner', cursive;
        font-size: 100px;
        margin: 0;
    }
    
    .short-description {
        font-family: 'Poppins', sans-serif;
        font-size: 25px;
        font-weight: 600;
        margin: 0;
        margin-left: 5px;
    }
    
    
    .hero-text {
        margin-left: 5%;
        margin-bottom: 200px;
    }

    .logo {
        height: 80px;
        margin-left: 10px;
    }

}


.about-section {
    display: flex;
    justify-content: space-around;
}

.information {
    padding-left: 5%;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
    text-decoration: underline;
}

p {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

.description {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 30px;
    margin-top: 20px;
}

.headshot-container {
    display: flex;
    align-items:flex-start;
    padding: 5%;
    margin-top: 50px;
}

.headshot {
    width: 300px;
    border-radius: 150px;
}


.project-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 60px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    text-decoration: underline;
}

.project-container {
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}

.project-card {
    width:300px;
    height:500px;
    box-shadow: 5px 5px 20px rgb(197, 197, 197);
    margin: 10px;
}

.project-image {
    height: 50%;
    width: 250px;
    border-radius: 50px;
    margin-top: 15px;
}

.subtext {
    font-size: 12px;
    font-weight: 300;
    margin-left: 10px;
    margin-right: 10px;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}


h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
}

.project-link {
    font-weight: 500;
    text-decoration: none;
    color: #ef744b;
    font-size: 15px;
}


h5 {
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    font-size: 40px;
    text-decoration: underline;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 40px;
        padding-right: 20px;
        padding-top: 20px;
    }

    ul {
        display: none;
        background-color: black;
        text-align: end;
        margin-top: 10px;
        padding-right: 5px;
        font-size: 20px;
    }

    nav {
        align-items: flex-start;
        height:100px;
    }
}

