body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}
.coming-soon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.social-icons {
    margin-top: 20px; /* Add some spacing above the icons */
}
.social-icons a {
    display: inline-block; /* Make icons sit side by side */
    margin: 0 10px; /* Space between icons */
    color: white; /* Icon color */
    font-size: 2rem; /* Adjust icon size */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.social-icons a:hover {
    color: #ddd; /* Slightly lighter color on hover */
}
/* Style for the handle text */
.handle-text {
    display: block; /* Make handle text appear below the icon */
    font-size: 1rem; /* Adjust handle size */
    margin-top: 5px; /* Space between icon and text */
    text-decoration: none;
    color: white;
}
.social-icons a {
    display: inline-block;
    margin: 0 10px;
    /* Remove font-size and color styles */
    transition: opacity 0.3s; /* Smooth opacity transition */
}
.social-icons a:hover {
    opacity: 0.7; /* Slightly transparent on hover */
}
.social-icons img {
    width: 2rem; /* Adjust image size */
    height: 2rem; /* Adjust image size */
}
.handle-text {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
    text-decoration: none;
    color: white;
}