/* Basic Reset */
body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: "Alumni Sans Pinstripe", sans-serif;
    color: #333;
}

body {
    background: url('trama_gris.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    margin: 0; /* Remove default margin to ensure proper centering */
}

/* Container with white background */
.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center; /* Center text inside container */
}

/* Loading Icon */
.loading-icon {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid hsl(20, 100%, 50%);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto; /* Center the loading icon horizontally */
}

/* Keyframes for loading icon */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
}

footer p {
    color: #333;
}

/* Heading and Paragraph styles */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700; /* Stronger font weight */
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}
