body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    height: 100%; /* Full height of the viewport */
    width: 100%;
    font-family: 'Anton', 'Noto Sans', sans-serif;
    background-color: #000000;
}

.video-container {
    position: relative;
    height: 100%; /* Full-screen height for video */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

video {
    position: fixed; /* Keep the video fixed in place */
    top: 0;
    left: 0;
    width: 100%; /* Full width of the viewport */
    height: 100%; /* Full height of the viewport */
    object-fit: cover; /* Cover the screen while keeping aspect ratio */
}

.centered-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding-bottom: 20px; /* Adjust this value to increase/decrease space */
    min-width: 60%; /* Adjust as needed */
    text-transform: uppercase;
    z-index: 2;
}

.additional-content {
    position: relative;
    padding: 20px;
    color: white; /* White text for readability */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    padding: 20px; /* Add padding inside the content */
    color: white; /* White text for readability */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    text-align: center; /* Left-align the text in additional content */
    z-index: 2;
}

.additional-content p {
    margin-bottom: 1em; /* Spacing between paragraphs */
    font-size: 26px; /* Even larger font size for individual paragraphs */
}

.centered-content p {
    font-size: 40px;
    line-height: 1.1; /* Reduced line height */
    margin-top: 0px;
    margin-bottom: 25px;
    text-align: center; /* Center align the text */
    margin-left: 0.5em;
    margin-right: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.centered-content button {
    border: none;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Anton', 'Noto Sans', sans-serif;
    text-transform: uppercase;
}

.centered-content button:hover, .centered-content button:focus {
    transform: translateY(-2px);
    outline: none;
}

.button-green {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    color: white;
}
.button-orange {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
}
.button-blue {
    background: linear-gradient(45deg, #2196F3, #64B5F6);
    color: white;
}
.button-red {
    background: linear-gradient(45deg, #F44336, #E57373);
    color: white;
}
.button-yellow {
    background: linear-gradient(45deg, #FFEB3B, #FFF176);
    color: black;
}
.button-purple-pink {
    background: linear-gradient(45deg, #9C27B0, #E1BEE7);
    color: white;
}
.button-teal-cyan {
    background: linear-gradient(45deg, #009688, #80CBC4);
    color: white;
}
.button-deeporange-amber {
    background: linear-gradient(45deg, #FF5722, #FFCC80);
    color: white;
}
.button-indigo-lightblue {
    background: linear-gradient(45deg, #3F51B5, #90CAF9);
    color: white;
}
.button-lime-lightgreen {
    background: linear-gradient(45deg, #CDDC39, #DCE775);
    color: black;
}

a {
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Inherits the color from parent elements */
}

@media screen and (orientation: landscape) {
    .centered-content {
        min-width: 60%;
        padding-bottom: 25px;
    }
}

@media screen and (orientation: portrait) {
    .centered-content {
        min-width: 90%;
        padding-bottom: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .centered-content {
        min-width: 60%;
        padding-bottom: 60px;
    }
    .centered-content p {
        font-size: 70px;
    }
    .centered-content button {
        font-size: 40px;
    }

}
