body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    overflow: auto; /* Allow the body to scroll if needed */
}

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

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

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.center-content {
    position: relative; /* Changed from absolute to relative */
    margin: auto;
    padding: 50px;
    border: 2px solid #CFAF5D;
    border-radius: 25px;
    background-color: #1a1a1a;
    text-align: center;
    color: #CFAF5D;
    margin-top: 30px;
    width: 50%;
    max-width: 600px;
    overflow: auto; /* Allow scroll if content overflows */
    z-index: 1; /* Ensure it is above the video and overlay */
}

.logo {
    width: 220px;
    margin-bottom: 20px;
}

.center-content h1 {
    font-size: 30px;
    font-weight: bold; /* Make the heading bold */
    margin-bottom: 30px;
}

.center-content p {
    font-size: 12px;
    line-height: 1.6; /* Increase line spacing */
    margin-bottom: 40px;
}

.center-content button {
    padding: 15px 30px;
    background-color: #CFAF5D;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.center-content button:hover {
    background-color: #a08b4a;
}
