body {
    margin: 0;
    padding: 0;
}
@media (max-width: 430px) {
    .global-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: "Chivo", sans-serif;
        text-align: center;
        font-size: 12px;
        background-color: white;
    }
}
@media (min-width: 431px) {
    .global-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: "Chivo", sans-serif;
        text-align: center;
        font-size: 16px;
        background-color: white;
    }
}
.section {
    width: 90%;
    max-width: 1100px;
}
.section-bg1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #faedcb;
}
.section-bg2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #c9e4de;
}
.section-bg3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #f7d9c4;
}
.section-bg4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #c6def1;
}
h2 {
    font-size: 2.5em;
    margin: 1em 0.1em 0.5em 0.1em;
    padding: 0.5em;
    user-select: none;
}
.header-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-image-container {
    display: flex;
    justify-content: center;
    width: 15em;
    height: 15em;
    margin-top: 3em;
}
.header-image-container img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 15px;
}
.header-section-container h1 {
    font-size: 4em;
    font-weight: 900;
    margin: 0.4em 0 0 0;
    padding: 0;
    border: 0;
    position: relative;
    user-select: none;
}
.header-section-container h2 {
    font-size: 1em;
    font-weight: 900;
    margin: 0;
    padding: 0;
}
.blinking-underscore::after {
    content: "_";
    opacity: 1;
    animation: blink 1.06s infinite;
    left: 98%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.header-links-container {
    display: flex;
    justify-content: space-between;
    margin: 1em;
}
.link-button {
    color: #000000;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    padding: 0.33em 0.66em;
    margin: 1em;
    background-color: #dbcdf0;
    border-style: solid;
    border-color: #8958d4;
    border-width: 0.2em;
    border-radius: 15px;
    transition: background-color 0.3s ease-in-out;
}
.link-button:hover {
    background-color: #a67fe2;
}
.about-section-container {
    display: flex;
    align-items: flex-start;
}
@media (max-width: 430px) {
    .about-me-container {
        display: flex;
        flex-direction: column;
        width: 50%;
        margin: 0 2.5em 2.5em 2.5em;
    }
}
@media (min-width: 431px) {
    .about-me-container {
        display: flex;
        flex-direction: column;
        width: 50%;
        max-width: 30em;
        margin: 0 2.5em 2.5em 2.5em;
    }
}
.contact-link {
    color: #000000;
    cursor: pointer;
    text-decoration: none;
}
@media (max-width: 430px) {
    .education-container {
        display: flex;
        width: 65%;
        height: 8em;
        background-color: #f2c6de;
        border: 0.2em solid #eb5baa;
        border-radius: 15px;
        overflow: hidden;
        margin: 0 0 3em 0;
    }
}
@media (min-width: 431px) {
    .education-container {
        display: flex;
        width: 40%;
        max-width: 30em;
        height: 8em;
        background-color: #f2c6de;
        border: 0.2em solid #eb5baa;
        border-radius: 15px;
        overflow: hidden;
        margin: 0 0 3em 0;
    }
}
.education-left {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.education-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 0 1em;
}
.education-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.education-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.5em 0 1.5em;
}
.education-1 {
    font-size: 1em;
    font-weight: 900;
    margin: 0;
    padding: 0;
}
.education-2 {
    margin: 0;
    padding: 0;
}
.education-3 {
    font-style: italic;
    margin: 0;
    padding: 3px 0 0 0;
}
@media (max-width: 430px) {
    .projects-item {
        display: flex;
        flex-direction: column;
        width: 75%;
        height: auto;
        background-color: #dbcdf0;
        border: 0.2em solid #8958d4;
        border-radius: 15px;
        overflow: hidden;
        margin: 1em 0 3em 0;
    }
}
@media (min-width: 431px) {
    .projects-item {
        display: flex;
        flex-direction: row;
        width: 75%;
        max-width: 70em;
        height: auto;
        background-color: #dbcdf0;
        border: 0.2em solid #8958d4;
        border-radius: 15px;
        overflow: hidden;
        margin: 1em 0 3em 0;
    }
}
@media (max-width: 430px) {
    .projects-item-description {
        flex: 0 0 40%;
        padding: 1em;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 431px) {
    .projects-item-description {
        flex: 0 0 40%;
        padding: 1em;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
.projects-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
@media (max-width: 430px) {
    .projects-item-images {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1em;
    }
}
@media (min-width: 431px) {
    .projects-item-images {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1em;
    }
}
.projects-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.projects-link {
    cursor: pointer;
    text-decoration: underline;
    color: #000000;
}
.skills-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 3em;
}
.skills-item {
    margin: 0.25em;
}
