* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}
.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: black;
}
.footer .social-icons {
    margin: 10px 0;
}
.footer .social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
}
.footer .social-icons img {
    width: 40px;
    height: 40px;
}
.footer .email {
    margin: 10px 0;
}
.footer .copyright {
    margin-top: 10px;
    font-size: 14px;
}

/* Extra styles to ensure correct scaling on mobile devices */
@media (max-width: 768px) {
    .background-video {
        width: auto;
        height: 100%;
    }
}