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

a {
    text-decoration: none;
    color: var(--text);
}

:root {
    --background: #f4eff6;
    --primary_button: #c0d5b8;
    --secondary_button: #7e152a;
    --accent: #87b078;
    --text: #0e0910;
}

section {
    background-color: white;
    padding: 10px;
}
nav {
    display: flex;
    justify-content: space-between;
}
ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
}
li {
    text-decoration: none;
}
h1 {
    font-size: 90px;
    margin: 0;
}
h2 {
    font-size: 50px;
}
p {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 30px;
}

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

footer {
    background-color: var(--background);
    color: var(--text);
    text-align: center;
    padding: 80px;
}

.hero {
    background-color: var(--background);
    height: 100vh;

    color: var(--text);
    font-size: 40px;

}

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

.hero-texts {
    margin-bottom: 200px;
    padding: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.hero-text {
    padding: 10px;
}

.button {
    display: flex;
    padding: 10px;
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary_button);
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.button:hover {
    background-color: #687095;
}
.button:active {
    background-color: #898989;
    color: var(--text);
}

.socials {
    padding-bottom: 100px;
}
.social {
    margin: 20px;
}


.about-me {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 200px;
    background-color: var(--background);
    color: var(--text);
}
.about-me-text {
    opacity: 0.8;
}
.myface-container {
    display: flex;
    align-items: center;
}
.myface {
    width: 300px;
    border-radius: 150px;
}


.projects-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
    background-color: var(--background);
    color: var(--text);
}
@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}
.project-container {
    display: flex;
    justify-content: space-around;
}
.project {
    width: 300px;
    height: 520px;
    background-color: var(--accent);
    box-shadow: 5px 5px 20px var(--accent);
}
.project-subtext {
    font-size: 20px;
    font-weight: 300;
}
.project-image {
    margin-top: 10px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
}
.project-link {
    font-size: 20px;
    text-decoration: none;
    color: var(--secondary_button)
}
.contact-link {
    font-size: 40px;
    text-decoration: none;
    color: var(--secondary_button)
}