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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#action-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    background: white;
    border: 2px solid black;
    border-radius: 5px;
}

#dynamic-text {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    width: 300px;
    height: auto;
    overflow: hidden;
    z-index: 1;
    color: #333; /* Text color */
    border: none; /* No border */
}

#dynamic-text h1 {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    margin-bottom: 15px;
}

#dynamic-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
