body {
    margin: 0;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
    width: 600px;
    height: 200px;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 200px;
    object-fit: fill;
    z-index: -1;
}


.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    z-index: 2;
    object-fit: contain;
}

.content {
    text-align: center;
    font-size: medium;
}

p {
    color: white;
    font-family: Raleway, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #6c6c6c;
    font-weight: bold;
    font-family: Raleway, sans-serif;
    transition: background-color 0.2s ease-in-out;
}

a:hover {
    background-color: #25D366;
    cursor: pointer;
    color: #0b5c2a;
}

@media (max-width: 768px) {
    .logo {
        width: 300px;
        height: 100px;
    }
    .container {
        width: 300px;
        height: 100px;
    }
    p {
        width: 90vw;
        font-size: .8rem;
    }
    .background-video {
        top: 1px;
        left: 1px;
        width: 298px;
        height: 196px;
        object-fit: fill;
        z-index: -1;
    }
}
