body, html {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
}

.top-section {
    height: 100vh;
    background-color: #181818;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-section h1 {
    font-size: 3rem;
    margin: 0;
}

.top-section .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.top-section .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-section .icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.top-section .icons a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.top-section .icons a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent; /* Ensures no background */
}

#mail-link {
    background-color: white;
}

.down-arrow {
    position: absolute;
    bottom: 70px;
    border: solid white;
    border-width: 0 3.5px 3.5px 0;
    padding: 15px;
    margin-bottom: 30px;
    margin-top: -30px;
    animation: moveArrow 1s infinite;
}

@keyframes moveArrow {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .top-section h1 {
        font-size: 2rem;
    }

    .top-section .profile-image {
        width: 80px;
        height: 80px;
    }

    .top-section .icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}