
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: full;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #1e90ff, #ff7f50); 
    background-size: cover;
}
h1 {
    color: white;
    text-align: center;
    font-size: 3em;
    margin-top: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 50px auto;
    width: 300px;
}

li {
    margin: 15px 0;
}

a {
    display: block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8); 
    color: #333;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 8px;
    transition: background 0.3s ease;
}

a:hover {
    background: rgba(255, 255, 255, 1); 
}

body::before {
    content: "";
    background-image: url('sunset-silhouettes-trees-mountains-generative-ai.jpg'); 
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3; 
    transform: translateZ(0);
}

h2 {
    text-align: center;
    font-size: 2em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    a {
        font-size: 1em;
    }

    ul {
        width: 100%;
        padding: 0 20px;
    }
}
