* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0B0A38;
}

body {
  background-image : url("/Avion/img/Flight_to_YUL.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  font-family: "Noto", sans-serif;
  color: #0B0A38;
}



.main-content {
  flex: 1;
  padding: 1.4em;
}

header{
  text-align:  center;
  min-height: 50vh;
  padding-top: 7rem;
  color: #ffffffed;
  font-size: 2.5rem;
  letter-spacing: 2px;     
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.header-title p{
  margin: 1.8rem auto;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align:  center;

}

.feature-grid {
  display: grid;
  justify-items: center;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.194);
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  border: solid #C6D2E2 4px;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-top: 10px;
}

@media (max-width: 768px) {
  h1 {
      font-size: 2.3rem;
  }

   body{
    background-size: auto;
    overflow: hidden;
    
  } 
}