@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  height: 100vh;
  background-color: rgb(236, 240, 241);
}

header {
  background: url("../img/mario.png");
  background-size: cover;
  height: 400px;
  background-position: center;
}

.navbar {
  background-color: rgba(52, 73, 94, 0.7);
  width: 100%;
  height: 60px;
}

.navmenu {
  line-height: 60px;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.navlink {
  cursor: pointer;
  padding: 0 10px;
  list-style: none;
  flex-shrink: 0;
  text-align: center;
}

.navlink:hover {
  background-color: rgba(241, 196, 15, 0.7);
}

.navlink:nth-child(2):hover {
  padding: 0;
}

.navlink a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* Sous menu*/

.sous-navmenu {
  display: none;
}

.sous-navlink {
  list-style-type: none;
  text-align: center;
  padding: 0 10px;
  background: rgba(52, 73, 94, 0.7);
  color: white;
}

.sous-navlink:hover {
  background: rgba(241, 196, 15, 0.7);
}

.navlink:hover > ul {
  display: block;
}
