body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-bottom: 25px;
}

.container {
    text-align: center;
}

.center-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: white;
}

.social-icons a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2864ed;
    font-weight: bold;
}

.about-content {
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    color: white;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    word-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
}

.about-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .center-image {
        width: 80%;
    }

    .social-icons {
        gap: 10px;
        font-size: 16px;
    }

    .about-content {
        max-width: 90%;
    }
}


.footer-links {
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: white;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2864ed;
    font-weight: bold;
}


/* Add styles for the 'back-to-top' link */
.back-to-top {
    display: block;
    margin: 30px auto;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #2864ed;
    font-weight: bold;
}