  /* General styles */
  body {
    margin: 0.4px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Blur effect background with slideshow */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(1.8px) brightness(60%);
    animation: slideshow 120s infinite; /* 12 images x 10s */
}

body {
outline: 3px solid rgba(255, 255, 255, 0); /* Thinner line with lighter color */
outline-offset: -2px;
}


/* Keyframes for background slideshow */
@keyframes slideshow {
    0% { background-image: url('../images/1.png'); }
    8.33% { background-image: url('../images/2.jpg'); }
    16.66% { background-image: url('../images/3.jpeg'); }
    25% { background-image: url('../images/4.jpg'); }
    33.33% { background-image: url('../images/5.jpg'); }
    41.66% { background-image: url('../images/6.jpg'); }
    50% { background-image: url('../images/7.jpg'); }
    58.33% { background-image: url('../images/8.jpg'); }
    66.66% { background-image: url('../images/9.jpg'); }
    75% { background-image: url('../images/10.jpg'); }
    83.33% { background-image: url('../images/11.jpg'); }
    91.66% { background-image: url('../images/12.jpg'); }
    100% { background-image: url('../images/1.png'); }
}


/* Styled heading */
h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    animation: fadeIn 2s ease-in;
}

/* Subtitle text */
p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    animation: fadeIn 3s ease-in;
}

/* Button style */
a {
    padding: 15px 40px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover and focus effects for the button */
a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background-color: #ff4500;
}

/* Fade-in animation for text */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    a {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
        padding: 0 15px;
    }
    a {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

.btn {
justify-content: center;
font-size: 3.5rem;
outline: none;
text-transform: full-width;
background-color: rgba(14, 14, 26, 0.034); 
box-shadow: 0px 0px 60px #00000000;
}

