/* styles.css */
@font-face {
    font-family: 'Neco';
    src: url('/fonts/Neco_Complete/Fonts/OTF/Neco-Black.otf') format('opentype');
}
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: whitesmoke
    color: white;
    text-align: center;
}

.container {
    position: relative;
    max-width: 600px;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color:black;
    font-family: 'Neco', sans-serif;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: black;
    font-family: 'Neco', sans-serif;
    
}

.animation {
    margin: auto;
    width: 100px;
    height: 100px;
    border: 10px solid rgb(0, 0, 0);
    border-top: 10px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* styles.css */
.container {
    position: relative;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF; /* Couleur du bouton */
    color: white; /* Couleur du texte */
    text-align: center;
    text-decoration: none; /* Supprimer le soulignement du lien */
    border-radius: 5px; /* Coins arrondis */
    font-family: 'Neco', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Effet au survol */
}

.home-button:hover {
    background-color: #0056b3; /* Couleur du bouton au survol */
}
