body {
    margin: 0;
}

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

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
}

.content {
    position: absolute;
    left: calc(50% - 200px);
    top: calc(50% - 200px);
    z-index: 1;
    color: white;
    text-align: center;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    &:hover {
        cursor: pointer;
    }
}

.content:hover h1,
.content:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

img {
    transition: transform 0.3s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(255, 255, 255, 1);
}
