* {
  user-select: none !important;
  -webkit-user-select: none !important;
  outline: none;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #c1cd42;
}

header {
  position: fixed;
  display: inline-block;
  margin-top: 4rem;
  margin-left: 4rem;
}
.header-title {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  color: #e59626;
  background-color: rgba(255, 255, 255, 0.341);
}

.hero {
  display: grid;
  padding-bottom: 2rem;
}
img {
  width: 100%;
}

h1 {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 42px;
  padding: 0px 30px 0px 30px;
  margin: 0px 0px 0px 0px;
}

li {
  font-family: "Outfit", sans-serif;
  font-size: 16pt;
  color: rgb(121, 37, 12);
}

a {
  text-decoration: none;
}

.selected {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.select {
  display: flex;
  margin-left: 4rem;
  width: 40vw;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background: #ad6225;
  color: #f0d9b9;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: none;
  transition: 0.2s;
}

.select-clicked {
  border: none;
  /*box-shadow: 0 0 0.8em #e35fe1;*/
}

.select:hover {
  background: #4c2c0240;
}

.caret {
  width: 0;
  height: 0;
  border-left: 54px solid transparent;
  border-right: 54px solid transparent;
  border-top: 63px solid #6c131362;
  transition: 0.8s;
  /*box-shadow: 0 0.5em 1em rgba(129, 14, 14, 0.754);*/
}

.caret-rotate {
  transform: rotate(180deg);
}

.menu {
  list-style: none;
  /*padding: 0.2em 0.5em;*/
  background: #e7b67b8d;
  border: none;
  border-radius: 0;
  /*box-shadow: 0 0.5em 1em rgba(129, 14, 14, 0.754);*/
  /*color: #e5e5e5;*/
  /*position: absolute;
  /top: 7em;
  left: 50%;
  width: 100%;*/
  /*transform: translateX(0%);
  opacity: 0;*/
  display: none;
  z-index: 1;
}

.menu li {
  padding: 0.7em 0.5em;
  margin: 0 0;
  cursor: pointer;
}

.menu li:hover {
  background: #1acce0;
  transition: 0.3s;
}

.active {
  background: #23242a;
}

.menu-open {
  display: block;
  opacity: 0.9;
  margin-left: 4rem;
  width: 40vw;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.links a {
  color: rgb(39, 39, 39);
  font-family: "Matemasie", sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer {
  padding-bottom: 2rem;
  width: 100%;
  text-align: center;
  font-family: Roboto, Sans;
  font-size: 16px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}
