body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dfdfdf;
    color: #000000;
}

nav {
    background-color: #000000;
    padding: 10px 0;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff6600;
}

#meme {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.meme-text p {
    max-width: 600px;
    line-height: 1.6;
    font-size: 18px;
    margin-top: 20px;
}

.image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#about {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-top: 40px;
}

.about-text {
    width: 75%;
}

#about h3,
#projects h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 1px solid #ff6600;
}

#about ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

#about ul li {
    margin: 10px 0;
    font-size: 18px;
}

#about ul li strong {
    color: #000000;
    border-left: 1px solid #000000;
    padding-left: 10px;
}

.socials {
    padding-left: 20px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-left: 2px solid #ff6600;
}

.social-icon {
    display: inline-block;
    text-decoration: none;
    padding: 12px;
    background-color: #000000;
    color: white;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6600;
}

#contact {
    background-color: #ffffff;
    padding: 40px 20px;
    margin-top: 40px;
    text-align: center;
}

.fs-field {
    margin-bottom: 20px;
}

.fs-label {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.fs-input,
.fs-textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box;
}

.fs-input:focus,
.fs-textarea:focus {
    outline-color: #ff6600;
}

.fs-button-group {
    margin-top: 20px;
}

.fs-button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.fs-button:hover, .project-button:hover {
    background-color: #ff6600;
}

.project-button {
    padding: 6px 20px;
    font-size: 16px;
    /* background-color: #000000; */
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.project-button a{
    text-decoration: none;
    color: #000000;
}

#projects {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-top: 40px;
}

#projects h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 1px solid #ff6600;
}

#projects li {
    list-style: none;
    padding: 0;
    text-align: left;
    text-indent: 1em;
}

.project-list {
    /* background-color: #888888;
     */
    background-color: #dfdfdf;
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.project-image {
    width: 10%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1em;
}

.project-text {
    width: 90%;
    padding: 0, 1em;
    margin-bottom: 1em;
}


@media (max-width: 768px) {
    #about {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .socials {
        width: 100%;
        text-align: center;
    }

    .social-icon {
        width: auto;
    }

    .image img {
        width: 150px;
        height: 150px;
    }

    .meme-text p {
        font-size: 16px;
    }

    #about ul li {
        font-size: 16px;
    }
}
