/* Reset basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Barlow, sans-serif;
}

/* Fullscreen video container */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay on top of video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2D3E50;
    opacity: 0.3;
    z-index: 1;
}

/* Center content */
.landing-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: white;
    position: relative;
    z-index: 2;
}

/* Button styling */
.btn {
    position: fixed; /* Fixed position to the bottom right corner */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 3; /* Above everything else */
}

.btn:hover {
    background-color: #ef5623;
}
