/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif; /* Set the font family to Poppins */
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.social-links a {
    display: inline-block;
    color: white;
    text-decoration: none;
    margin: 15px 20px; /* Increased spacing between links */
    font-size: 14px; /* Smaller font size */
    font-weight: 500; /* Slightly lighter font weight */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.social-links a:hover {
    color: #ffcc00; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}
