body {
    font-family: "Poppins", "Roboto", sans-serif;
    margin: 0;
}
a {
    color: #666;
}
a:hover {
    color: #0eaeee;
}
.happy-events {
    align-items: flex-start;
    /* background-image: url('background.jpg'); */
    /* background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover; */
    display: flex;
    height: 100vh;
    justify-content: center;
    position: relative;
    /* width: 100%; */
}
.happy-events video {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.under-construction-message {
    backdrop-filter: blur(10px);
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.2);
    background-image: radial-gradient(
        circle at var(--x) var(--y),
        hsl(0 0% 100% / 0.75),
        transparent 5rem
    );
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 50px 25px;
    padding: 20px;
    position: absolute;
    max-width: 600px;
    z-index: 9;
}
.under-construction-message .text {
    text-align: center;
}
.logo-wrapper {
    text-align: center;
}
.logo {
    height: 70px;
}