
body{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    background-color: #313131;
    margin: 0;

}
.header{
    grid-column: 1 /span 12;
    background-color: black;
    padding-bottom: 20px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    margin: 0;
    box-shadow: 0px 7px 5px 0px rgba(0, 0, 0, 0.25);
}
.logo{
    grid-column: 2 /span 2;
    width: 100%;
    align-self: center;
}

.navbar{
    grid-column: 9 /span 3;
    color: white;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    list-style: none;
    font-family: lobster;
    font-size: 28px;
   
}
.navbar li{
    margin: 0 10px;
}
.navbar a{
    text-decoration: none;
    color: white;
}
.main{
    padding: 10px;
    grid-column: 1 /span 12;
}

.video{
    grid-column: 1 /span 12;
    grid-row: 1 /span 2;
    object-fit: fill;
    width: 100%;
    height: 500px;
}
.main{
    grid-column: 1 /span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(5, 250px);
}

.card{
    grid-column: 2 /span 4;
    grid-row: 3.5 /span 2;
    background-color: black;
    padding: 5px;
    z-index: 1;
    border-radius: 7px;
    box-shadow: 5px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: start;
    flex-direction: column;
    height: fit-content;

}
.btn-savoir{
    margin: auto;
    border-radius: 18px;
    height: 28px;
    width: 125px;
    background-color: #B5933E;
    box-shadow: inset 0px 4px 8px 0px rgba(255, 255, 255, 0.25);
    border-style: none;
    font-family: Teko;
    font-size: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    
}
.btn-savoir:active{
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}

p{
    color: white;
    font-family: Teko;
    font-size: 30px;
}

.imgintro{
    margin-top: 100px;
    grid-column: 5 /span 6;
    grid-row: 3 /span 1;
    width: 100%;
    border-radius: 4px;
    box-shadow: 4px 4px 4px -3px rgba(0, 0, 0, 0.25);
}


.footer{
    grid-column: 1 /span 12;
    width: 100%;
    display: grid;
    background-color: black;
    grid-template-columns: repeat(12, 1fr);
    margin: 0;
    font-family: Teko;
    font-size: 20px;
}

.adress{
    color: white;
    list-style: none;
    grid-column: 2 /span 1 ;
    text-align: start;
    padding: 0;

}

#fb{
    grid-column: 6 /span 1;
    align-self: center;
    justify-self: center;
    grid-row: 1 /span 1;
}

#ins{
    grid-column: 7 /span 1;
    align-self: center;
    justify-self: center;
    grid-row: 1 /span 1;
}

#ment{
    color: white;
    text-decoration: none;
    grid-column: 6 /span 2;
    grid-row: 1 /span 1;
    align-self: end;
    justify-self: center;
}
.navbar-footer{
    grid-column: 10 /span 2;
    color: white;
    text-align: end;


    
}
.navbar-footer li{
    list-style: none;

}
.navbar-footer a{
    text-decoration: none;
    color: white;
}