* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0);
    padding: 50px;
    border-radius: 0px;
}

.contact {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-size: 18px;
}
.contact a {
    color: #ffcc00;
    text-decoration: none;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.logo img {
    max-width: 150px;
    height: auto;
}
