/* Import des styles d'écriture */
@import url('https://fonts.googleapis.com/css2?family=Fuggles&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300&display=swap');


/* Haut de page et barre de navigation*/
nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(../img/fond.jpg);
    border-bottom: 30px solid rgb(14, 80, 96);
}
nav h1 {
    color: rgb(255, 255, 255);
    font-family: 'Fuggles', cursive;
    font-size: 100px;
    margin-left: 250px;
    margin-right: 600px;
} 

nav a{
  text-decoration: none;
}
/* Position des images dans la barre de navigation */
.img-blog {
    position: absolute;
    left: 10px;
    width: 15%;
    transform: rotate(-10deg);
}

.img-journal {
    position: absolute;
    top: 3%;
    right: 15px;
    width: 90px;
}

/* Boutons NavBar */
.onglets {
  display: inline-block;
  margin-left: -180px;
}

.onglets onglet-source{
  
}

.onglets button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  font: inherit;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 2px; /* Coins légèrement arrondis */
  overflow: hidden;
  background: linear-gradient(90deg, #0074e4, #00a4e4);
  color: #fff;
  transition: background-color 0.4s, color 0.4s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-right: 40px;
}

@keyframes buttonHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.onglets button:hover {
  background-color: #66ff66;
  color: #242424;
  animation: buttonHover 0.6s ease-in-out;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* Le corps de la page*/

main h1{
  font-family: 'Dela Gothic One', cursive;  
  font-size: 45px;
  text-align: center;
}

main{
  background-color: bisque;
   min-height: 100vh;
}
.principal p{
  font-family: 'Jost', sans-serif;
  margin-left: 100px;
  font-size: 18px;
}

.gras{

  font-weight: bold ;
}
.principal h3,h4{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: underline;
  margin-left: 100px;
}

.img-bvn {
  position: absolute;
  top: 45%;
  right: 140px;
}

.img-iphone20 {
  position: absolute;
  top: 99%;
  right: 140px;
  width: 300px;
  border-radius: 8px;
}
.iphone{
  position: absolute;
  text-align: center;
  top: 125%;
  right: 140px;
}

/*Mon bas de page*/
.footer {
    background-image: url(../img/fondbas.jpg);
    color: rgb(62, 62, 62);
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 50px;
    border-top: 30px solid rgb(14, 80, 96);

}

.footer a{
    color: rgb(62, 62, 62);
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
}

.footer p{
    color: rgb(255, 255, 255);
    font-family: 'Yatra One', cursive;
}

.img-sio {
    position: absolute;
    bottom: -500px;
    left: 400px;
    border-radius: 10px;
    width : 7%;
}


table{
  border-collapse: collapse
}

table td{
  border: 1px solid rgb(12, 142, 218);
  padding: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;

