/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Background with overlay */
.background {
    height: 100%;
    background: url('/images/dawntrailbg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Add a dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Header */
header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Container */
.container {
    background-color: rgba(255, 255, 255, 0.1); /* Translucent background for the container */
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #7289da;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .btn:hover {
        background-color: #5b6eae;
        transform: translateY(-2px); /* Add a hover effect with slight lift */
    }
