/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: url('great wall of quotes\media\storm.jpg') no-repeat center center/cover; /* Fallback image */
}

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

/* Quote Container */
.quote-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
}

/* Quote Overlay */
.quote-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
}

/* Quote Text */
.quote-text {
    font-size: 1.5em;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Quote Author */
.quote-author {
    font-size: 1.2em;
    font-style: italic;
    margin-top: 20px;
}
.back-button {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    margin: 20px auto;
    display: block;
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}