@font-face {
    font-family: "Love Story";
    src: url("/love story ttf.ttf");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Love Story", sans-serif;
}

.fond{
    background-image: url("/fond.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    position: absolute;
}

h1{
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-top: 10%;
}

.indices h2{
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-top: 5%;
}

.indices .intro{
    color: white;
    text-align: center;
    margin-top: 50px;
}

.indices .indice{
    display: block;
    position: absolute;
    height: 100px;
    width: 150px;
    font-size: 0.8em;
    text-align: center;
    background-image: url("/coeur.svg");
    background-size: 60%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: rgb(253, 71, 177);
    transition: all 2s;
    user-select: none;
    text-shadow: 2px 2px 2px black;
}

form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
}

form input{
    width: 300px;
    height: 40px;
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
}
form input[type="submit"]{
    width: 150px;
    background-color: #ff6b6b;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
form input[type="submit"]:hover{
    background-color: #ff4d4d;
}

form .erreur{
    color: white;
    font-size: 0.8rem;
    margin-top: 10px;
}