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

body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Background image setup */
.wrapper {
    background-image: url('Assets/Background.webp');
    background-position: top center; /* Ensure the image is centered */
    background-repeat: no-repeat;
    background-size: cover; /* Keep the aspect ratio and allow some vertical scaling */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure it takes full viewport height */
    width: 100vw;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Adds a semi-transparent background for better readability */
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
    color: #333;
}

footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent footer background for readability */
    color: #fff;
    position: relative;
}

footer p {
    margin: 5px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 10px;
    }
}
