footer {
    background-color: #5c625d;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.footer-link-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-footer-box {
    /* max-width: 600px; */
    text-align: center;
}

.about-footer-box h2 {
    font-size: 2em;
    color: #4bda67;
    margin-bottom: 15px;
}

.about-footer-box p {
    font-size: 1.1em;
    color: #ccc;
}

.email-me {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-me input, .email-me textarea {
    margin: 10px 0;
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.email-me textarea {
    resize: vertical;
}

button[type="send"] {
    background-color: #05240b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px 0;
}

button[type="send"]:hover {
    background-color: #4bda67;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4bda67;
}

#email-me{
    text-decoration: none;
    color: white;
}

@media (max-width: 425px) {
    footer {
        padding: 30px 20px;
    }

    .about-footer-box h2 {
        font-size: 1.5em;
    }

    .about-footer-box p {
        font-size: 1em;
    }

    .email-me input,
    .email-me textarea {
        width: 100%;
    }

    .social-icons a {
        font-size: 1.3rem;
        margin: 0 8px;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .about-footer-box h2 {
        font-size: 1.8em;
    }

    .about-footer-box p {
        font-size: 1.05em;
    }

    .email-me input,
    .email-me textarea {
        width: 90%;
    }

    .social-icons a {
        font-size: 1.4rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-footer-box h2 {
        font-size: 2em;
    }

    .email-me input,
    .email-me textarea {
        width: 85%;
    }
}