*
*::before
*::after {
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nova Square', sans-serif;
    margin: 0;
    padding: 0;
    background: black;
    color: white;
    list-style:none ;
    }

    .header {
      height: 100vh;
      background: url(img/header.jpg) center center no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .sombre {
      font-size: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin: 0;
      height: 100vh;
      width: 100%;
      background-color: rgb(0, 0, 0, 0.3);
    }

    i {
      color: white;
    }

    .active {
      color: gold !important;
    }

    .navbar {
        padding-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0.7);
      }
      
      .navbar a {
        color: white;
        text-decoration: none;
      }
      
      .navbar .logo {
        font-size: 2em;
        font-weight: bold;
        max-width: 100px;
      }
    
      .logo {
        margin-right: 60px;
      }
      
     .navbar .nav-links ul {
        display: flex;
        align-items: center;
        width: 100%;
         font-size: 1.01em;
        font-weight: bold;
      }
      
      .navbar .nav-links ul li {
        display: flex;
        margin: 0 25px;
        transition: all 0.5s ease-in-out;
        list-style: none; 
        transition: all 0.3s;
      }
    
      .navbar .boutton {
        position: absolute;
        width: 35px;
        top: 50px;
        right: -10px;
      }
      
      .navbar a:hover {
        transition: all 0.3s;
        color: goldenrod;
      }

      .flexCentre {
      display: flex;
      align-items: center;
      justify-content: center;
      }
  
      .iconSize {
        height: 30px;
        width: 30px;
        border-radius: 20px 0 0 20px;
      }
      
    .auto-typing {
        color: gold;
        font-size: 2rem;
    }

    .destination {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .destination h2 {
      margin-top: 100px;
    }

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px;
}

.boite {
  display: flex;
  height: 500px;
  width: 500px;
  border: solid 2px white;
  border-radius: 20px;
  margin: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.btn {
  display: flex;
  color: black;
  height: 44px;
  width: 70px;
  margin: 10px;
  padding: 5px;
  background-color: goldenrod;
  transition: all ease-in-out 0.5s;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn:hover {
  transition: all ease-in-out 0.5s;
  color: white;
  background-color: black;
  border: 2px solid goldenrod;
  border-radius: 5px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
  height: 30vh;
  background-color: rgba(255, 255, 255, 0.2);
}

  

