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

.subtext {
    font-size: 15px;
    font-weight: 300;
    padding-right: 20px;
    padding-left: 20px;
}

section {
    background-color: white;
}

.hero {
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 30px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
}

ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
}

ul.show {
    display: block;
}

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

h1 {
    font-size: 90px;
    margin: 0px;
}

@media only screen and (max-width: 1000px) {
    h1 {
        font-size: 60px;
    }
}


h2 {
    font-size: 50px;
}

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

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


.button {
    width: 200px;
    height: 55px;
    border-radius: 30px;
    background-color: coral;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
}

.download-button {
    width: 250px;
    height: 35px;
    border-radius: 50px;
    background-color: coral;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
    color: whitesmoke;
}

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

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


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

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

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

.socials {
    padding-bottom: 200px;
}

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

.social {
    margin: 20px;
}

.sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;

}

.headshot {
    width: 800px;
    border-radius: 200px;
}

.headshot-container {
    display: flex;
    align-items: center;
    padding: 20px;
}

.project-card {
    width: 300px;
    height: 500px;
    margin: 10px;
    box-shadow: 5px 5px 20px #c1c1c1;
    border-radius: 20px;
}

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



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

.project-image {
    margin-top: 25px;
    width: 150px;
}

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

.project-link {
    text-decoration: none;
    color: #ef744b;
}

a {
    text-decoration: none;
    color: white;
}

.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: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #2b2c38;
    }

    ul.show {
        display: block;
    }


    nav {
        display: flex;
        background-color: #2b2c38;
        flex-direction: column-reverse;
    }

    .logo {
        display: none;
    }

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

.project-technology {
    width: 25px;
    fill: #1c1d25;
}

.download-area {
    display: flex;
    justify-content: space-evenly;
    margin-right: 15%;

}


@media only screen and (max-width: 768px) {
    h1, h2, p {
        font-size: smaller; /* Adjust font size */
    }

    .hero-text, .sub-section, .project-container {
        margin: 0;
        padding: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .project-card {
        width: 90%; /* Adjust width to be more fluid */
        margin: 10px auto;
    }

    .button, .download-button {
        width: auto; /* Allow buttons to adjust width */
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .headshot {
        width: 50%; /* Adjust headshot size */
        border-radius: 50%;
    }

    /* Further adjustments as needed */
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-6 {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}
@media only screen and (max-width: 768px) {
    .col-6 {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
    p {
        font-size: 16px;
    }
    nav ul {
        flex-direction: column;
        padding: 0;
    }
    nav ul li {
        text-align: center;
        padding: 10px 0;
    }
    .hero {
        height: auto;
        padding: 20px;
    }
    .hero-text {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .button {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 16px; /* Larger font size for readability on small screens */
    }
    .subtext {
        font-size: 14px; /* Adjusting subtext font size */
        padding-right: 10px;
        padding-left: 10px;
    }
    .hero {
        font-size: 20px; /* Adjusting hero section font size */
    }
    /* Add more customizations for other elements as needed */
}