/* style.css */

@font-face {
    font-family: 'Hauora';
    src: url('font/Hauora-Regular.woff2') format('woff2'),
         url('font/Hauora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hauora';
    src: url('font/Hauora-Medium.woff2') format('woff2'),
         url('font/Hauora-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Hauora';
    src: url('font/Hauora-Bold.woff2') format('woff2'),
         url('font/Hauora-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Hauora';
    src: url('font/Hauora-ExtraBold.woff2') format('woff2'),
         url('font/Hauora-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    font-family: 'Hauora', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 20px;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto; /* Assurez-vous que le défilement est activé si nécessaire */
    background-attachment: fixed;
}

body.form{
    align-items: center;
}

body.results{
    align-items: flex-start;
}



.container {
    /* Styles de votre conteneur, ajustez selon vos besoins */
    backdrop-filter: blur(20px); /* Applique un flou de 10px */
    width: 50%;
    padding: 50px;
    text-align: center;
    background-color: rgba(7, 12, 19, 0.8); /* #070C13 avec 0.8 d'opacité */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(7, 12, 19, 0.2);
}

h1 {
    color: #fff; /* Texte d'introduction en blanc */
}
p {
    color: #bbb; /* Texte plus clair */
}
input[type="text"] {
    background-color: rgba(7, 12, 19, 0.7); /* #070C13 avec 0.7 d'opacité */
    color: #fff; /* Couleur du texte (blanc pour une meilleure visibilité) */
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 5px;
}


button {
    padding: 15px 30px;
    background-color: #e3ff00; /* Bouton jaune vif */
    color: #121212; /* Texte en noir pour le contraste */
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}
button:hover {
    background-color: #c2cc00; /* Variation de jaune */
}
