
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Kode Mono", monospace;
    background-color: #2b323c;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* NAVBAR */
nav {
    padding: 20px;
}

li,
ul {
    display: flex;
    justify-content: space-evenly;
    color: #eee72b;
}

a {
    text-decoration: none;
}

/* HERO SECTION */
span {
    color: #eee72b;
}

section {
    margin: 50px auto;
    gap: 30px;
    max-width: 800px;
}

.btns {
    margin-top: 20px;
}

.btn {
    padding: 10px;
    background-color: #3782d3;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 300ms ease;

}

.btn:hover {
    background-color: #1b5a9d;
}

#hero {
    text-align: center;
}

.hero__container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto;
    border: solid 5px #eee72b;
}

.hero__container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ABOUT */
#about {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#about h2,
#skills h2 {
    color: #eee72b;
}

.about__container,
.education__container,
.frontend__skills,
.backend__skills {
    background-color: rgba(238, 231, 43, 0.2);
    border-radius: 40px;
    padding: 30px;
}

.education__container,
.about__container {
    text-align: center;
}

.skills-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
}

#skills,
#projects,
#about {
    margin-top: 50px;
}

/* PROJECTS */

#projects {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#projects .container {
    display: flex;
    height: auto;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

}

.project-1,
.project-2,
.project-3 {
    border-radius: 15px;
    width: 200px;
}

#projects h4 {
    padding: 30px 0 20px;
    color: #eee72b;
}

.project-container span {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* CONTACT */

.con__info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: xx-large;
}

/* footer */

footer {
    text-align: center;
    color: #eee72b;
    margin-bottom: 20px;
}