@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;
}

body {
  margin: 0;
  padding: 0;
}

header {
  background-color: rgba(44, 62, 80, 0.6);
  display: flex;
  flex-direction: row;
  color: white;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.banner {
  background: 
    linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.4)),
    url('../img/banniere.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
  width: 100%;
}

header h3 {
  margin: 0;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  width: 50%;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  width: 50%;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
}
