@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
body{
    background: #1e0a0a;
    font-family: "Nunito", sans-serif;
    transition: opa 1s ease-in-out;
    z-index: 3;
}
@keyframes opa {
    0%{
        display: none;
    }
    100%{
        display: block;
    }
}

.navbar{
    background-color: transparent;
    height: 80px;
    transition: background-color 0.5s ease;
}
.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.74) !important;
}
/***********************/
.parallax {
    height: 45vh;
    width: 100%;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax1 {/* changer le lien url de l'image de font acc.jpg */
    background-image: url("../images/gta.jpg");
    display: flex;
    align-items: center;
    justify-content: center;
    animation: image 3s;
}

.parallax1 h1{
    color: white;
    margin: 0;
    font-size: 5vw;
    opacity: 100%;
    text-shadow: 2px 2px 2px black;
    text-align: center;
    text-transform: uppercase;
    animation: opa 2s;
    width: 100%;
}
/**********************************************/
/* Gestion des tables */

table{
    text-align: left;
    margin: 30px auto;
    width: 70%;
    font-size: large;
    color: white;
    font-family: "Comfortaa", sans-serif;
    font-weight: 500;
    transition: opa 1s ease-in-out;
    scroll-snap-align: start;
}

table tr th{
    color: wheat;
    font-size: xx-large;
}

table tr td{
    padding: 0 0 20px 0;
}
table tr td span{
    font-weight: bolder;
    color: #ffb936;
}
table tr td .red{
    color: #ff3636;
}
.center:hover a{
    display: none;
}

@media (max-width: 1100px){
    .parallax1 h1 {
        font-size: 10vw;
    }
    table {
        width: 90%;
    }
}
