@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-image: url('../images/SKYBLUE.png');
    background-size: contain;
    margin: 0;
}

h1 {
    font-family: "Pixelify Sans", sans-serif;
    font-size: 2em;
    margin-left: 1em;
}

nav {
    padding: 3%;
    background: black;
    border-bottom: 5px solid white;
    box-shadow: 0 0 15px white;
}

.menu, th {
    font-family: "Pixelify Sans", sans-serif;
}

.menu:hover {
    background-color: #1d48ff;
    box-shadow: 0 0 30px #1d48ff;
}

.bloc_texte {
    color: white;
    background-color: #00092c;
    border: 5px solid white;
    border-radius: 15px;
    margin: 2em 10em 2em 10em;
    box-shadow: 0 0 15px white;
}

#caption_img {
    margin-left: 39em;
    margin-bottom: 0;
    padding-bottom: 0;
}

#btn_index {
    transition: background-color 0.5s, box-shadow 0.5s;
    margin-left: 24em;
    margin-right: 1em;
}

#btn_doom {
    transition: background-color 0.5s, box-shadow 0.5s;
    margin-right: 1em;
}

#btn_presta {
    transition: background-color 0.5s, box-shadow 0.5s;
    margin-right: 1em;
}

nav a {
    background-color: white;
    font-size: large;
    padding: 1%;
    border-radius: 15px;
}

p, tr, caption, figcaption{
    font-family: "Overpass", sans-serif;
    padding: 10px;
    color: white;
}

.img_index{
    border: 5px solid white;
    border-radius: 15px;
    height: 270px;
    width: 480px;
    box-shadow: 0 0 15px white;
}

figure {
    display: inline-block;
    margin-left: 7px;
    margin-right: 7px;
    text-align: center;
}

th, td {
    color: white;
    border:1px solid black;
    padding: 10px;
    background-color: black;
}

table {
    border:1px solid black;
    margin-left: 18em;
    margin-bottom: 3em;
    background-color: white;
    box-shadow: 0 0 15px white;
}

#tete {
    width: 48px;
    height: 60px;
    animation: bouge_tete 3s infinite;
}

@keyframes bouge_tete {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(380px);
    }
    100% {
        transform: translateX(0px);
    }
}