* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@keyframes zoomFade {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}
html, body {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    color-scheme: dark;
}
body {
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    font-family: Arial, sans-serif;
    text-align: center;
    /* color:#FFFFF4; */
    color: #fff8e3;
    position: relative;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') no-repeat center center/cover;
    animation: zoomFade 5s infinite ease-in-out;
}
body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 0, 0, 0.5); /* Dark overlay */
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    padding-left: 2rem;
    padding-right: 2rem;
}
h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h2 {
    font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    margin: 0 1rem;
    font-weight: 300;
}

h3{
    font-family: "Montserrat", sans-serif;
    margin-top: 1rem;
    font-weight: 600;
}

h4{
    font-family: "Montserrat", sans-serif;
    margin-top: 1rem;
    font-weight: 300;

}

.promo {
    font-family: "Montserrat", serif;
    font-weight: 600;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 0, 0, 0.3);
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    margin-top: 3rem;
    
}
.btn:focus {outline: 2px solid #fff; outline-offset: 3px; }
.btn:hover {
    background: red;
    color: white;
}
footer {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.8rem;
    /* padding: 10px 0; */
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 1rem 2rem
}
a {
    text-decoration: none;
}