@font-face {
    font-family: zubi;
    src: url("./fontasse//Markbats12-Regular.ttf");
}

* {
    font-size: 1.5rem;
    text-shadow: 0 0 24px #61faff, 0 0 26px #d9ff00, 0 0 10px #72ff95;
    backdrop-filter: blur(2px);
    background-color: rgba(8, 92, 5, 0.075);
    font-family: zubi;
    font-size: 25px;
}

*:hover {
    font-family: Georgia, 'Times New Roman', Times, serif, Helvetica, sans-serif;
}

body {
    background-image: url("https://www.justineandco.fr/491-large_default/baguette-ordinaire.jpg");
    background-size: 69px;
    background-color: rgb(130, 255, 161);
    color: rgb(0, 0, 0);
    text-emphasis: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}
#white {
    background-color: white;
}

#yellow {
    background-color: yellow;
}

#red {
    background-color: red;
}

#orange {
    background-color: orange;
}

#rott {
    background-color: rgb(75, 0, 0);
}

caption {
    font-size: 2rem;
}

#baguette {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 69px;
}

#baguette:hover {
    animation: infinite  0.69s rotator linear;
    transition: all 1s;
    cursor:grabbing;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    
}

button {
    background: white;
    color: pink;
    border: none;
}

.form {
    position: fixed;
    width: 80vw;
    height: 400px;
    background-color: red;
    display: none;
    z-index: 10;
}

.animform {
    display: block;
    animation: appear 1s ease-in-out;
}

.show {
    display: block !important;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.697);
    display: none;
    z-index: 5;
}