* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('images/dark-forest.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Courier New', monospace;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.center-img {
    width: 300px;
    max-width: 80%;
    margin-bottom: 30px;
    filter: brightness(0.9);
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ffffff;
}
