body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center; /* Center-align the text */
    margin-bottom: 20px; /* Add some margin below the header */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero section styles */
.hero {
    text-shadow: 0 0 5px rgb(136, 136, 136);
    position: relative;
    color: rgb(0, 0, 0);
    background-image: url('../imgs/guidelist.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 5px;
}

.hero h1 {
    color: white;
    background-color: rgba(0, 0, 0, 0.401);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px black; /* Add text shadow */
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
}

/* Call-to-action button styles */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ff9900, #ffcc00, #ff9900);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, background-position 0.3s;
    animation: shimmer 3s infinite;
}

.cta-button:hover {
    background-position: 100% 0;
    transform: scale(1.1);
}

.cta-button:active {
    background-position: 100% 0;
    transform: scale(1.05);
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    text-shadow: 1px 1px 2px black; /* Add text shadow */
}

/* New section styles */
.options {
    text-align: center;
    margin: 20px 0;
}

.options .cta-button {
    margin: 10px;
}

/* Clear button styles */
.clear-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.clear-button:hover {
    background-color: white;
    color: #333;
}
