body {
    background-color: #f0f0f0;
    margin: 0;
    font-family: Inter, Roboto, Arial;
    color: #303030;
}

.section {
    padding: 0px 100px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.home {
    background-color: #f0f0f0;
}

.about {
    background-color: #e8e8e8;
}

.header {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

a {
    font-weight: bold;
    color: #030383;
}

div {
    flex: 1;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav li {
    flex: 1;
    text-align: center;
    padding: 0px 0;
    transition: background-color 0.3s ease;
}

nav li a {
    display: block;
    color: #344e41;
    text-decoration: none;
    font-size: 24px;
    padding: 15px 20px;
}

nav li:hover {
    background-color: #a3b18a;
}

nav li a:hover {
    color: white;
}

.effect {
    box-shadow: none;
    transition: box-shadow 0.6s ease;
}

.scrolled .effect {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.19);
}

.card {
    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.bio_image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 5%;
    object-fit: contain;
}

#name {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 40px;
}

#descriptor {
    font-size: 24px;
    margin-bottom: 40px;
}

.body {
    padding: 10px 0px;
    color: #030303;
}

.bio {
    display: flex;
    flex-direction: row;
}

@media (max-width: 1200px) {
    .bio {
        flex-direction: column-reverse;
    }
}

.bar {
}

.social-links {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a img {
    width: 40px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

footer {
    background-color: #202020;
    padding: 10px 10px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
