@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap");
body {
  font-family: monospace;
  font-size: 18px;
  margin: 0;
  font-family: "Comic Neue", cursive;
}

img {
  position: relative;
}

nav {
  position: fixed;
  top: 0;
  right: 10%;
  z-index: 666;
}
nav .active {
  border-bottom: 2px solid white;
}
nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav ul li {
  padding: 0 30px;
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: white;
}
nav ul li a:hover {
  font-weight: bold;
  border-bottom: 2px solid white;
}

.img1 {
  width: 100%;
  right: -20%;
  margin-top: 20%;
}

.img2 {
  width: 100%;
  right: 120%;
  margin-top: 25%;
}

.img3 {
  width: 100%;
  right: -30%;
  margin-top: 30%;
}

.img4 {
  width: 100%;
  right: 40%;
}

.container {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url(../images/piste.jpg);
  background-size: cover;
  overflow: hidden;
}

.scene {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10%;
  right: 30%;
}

.pannau {
  position: relative;
  top: -35%;
  left: 40%;
  z-index: 99999;
  background-color: rgb(220, 164, 15);
  width: 20%;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pannau::after {
  content: "";
  height: 300px;
  position: absolute;
  width: 20px;
  top: -300px;
  left: 15%;
  background-color: rgb(220, 164, 15);
}
.pannau::before {
  content: "";
  height: 300px;
  position: absolute;
  width: 20px;
  top: -300px;
  right: 15%;
  background-color: rgb(220, 164, 15);
}
.pannau .score {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  position: relative;
}
.pannau .score button {
  position: absolute;
  right: -5%;
  top: -5%;
  font-weight: bold;
  color: white;
  background-color: transparent;
  border: none;
  font-size: 120%;
}
.pannau .score button:hover {
  color: rgb(3, 9, 58);
}
.pannau .score .equipe {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pannau h5 {
  font-size: xxx-large;
  color: white;
  margin: 0;
}
.pannau h6 {
  font-size: xx-large;
  padding: 15px 20px;
  background-color: white;
  border-radius: 15px;
  margin: 10px 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(3, 9, 58);
}
.pannau a {
  text-decoration: none;
  padding: 5px 30px;
  background-color: rgb(3, 9, 58);
  color: white;
  border-radius: 15px;
  font-size: 200%;
}
.pannau a:hover {
  background-color: rgb(100, 0, 52);
}/*# sourceMappingURL=styles.css.map */