body {
    background-color: black;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    
}
.first-section {
    text-align: center;
    color: white;
    margin-top: 4rem;
}
.first-section img {
    width: 7rem;
    border-radius: 50%;
}
.first-section h1 {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.first-section p {
    padding: 0px;
    margin: 0px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

}
.second-section {
    padding-top: 2rem;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
}
.social {
    z-index: 0;
    margin-bottom: 16px;
    background-color: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
    border-radius: 14px;
    display: flex;
    flex-direction: column; /* Align items in a column */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    position: relative;
    padding: 20px; /* Add padding to give space around the content */
    transition: all .12s;
}

.social:hover {
    padding: 10px 50px;
    background-color: #003369;
}  

.social img {
    position: static; /* Remove absolute positioning for proper alignment */
    width: 50px; /* Adjust width as needed */
    height: auto;
    margin-bottom: 10px; /* Add spacing between image and text */
    border-radius: 12px;
}

.social p {
    text-align: center; /* Ensure text is centered */
    line-height: 1.5;
    font-weight: 500;
    font-size: 18px;
    margin: 0; /* Remove any extra margins */
}


.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #FFF;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
}

#copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.3vh;
    color: #77ff3d;
    background-color: rgb(10, 10, 15);
    margin-bottom: 0vh;
    padding: 2vh;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.scroll-down-indicator.show {
    animation: fadeInOut 2s infinite;
}
