main {
  width: 100vw;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  align-content: center;
}

main {
  width: 70vw;
  margin: auto;
}

.logo {
  margin-bottom: 2rem;
  width: 70vw;
}

ul {
  text-align: center;
}

ul li {
  font-family: "Montserrat";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2vw;
  display: inline-block;
  margin-right: 2vw;
}

ul li:hover {
  background: rgb(0, 174, 239);
  background: linear-gradient(
    45deg,
    rgba(0, 174, 239, 1) 23%,
    rgba(38, 34, 98, 1) 50%,
    rgba(239, 65, 54, 1) 77%
  );
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

ul:last-child {
  margin-right: 0;
}

.bg-img {
  display: none;
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.show {
  display: block;
}

.copyright-button {
  font-family: "Montserrat";
  font-weight: 800;
  display: block;
  position: absolute;
  right: 15vw;
  bottom: 4rem;
  padding: 0.5rem 3rem;
  background: rgb(0, 174, 239);
  background: linear-gradient(
    45deg,
    rgba(0, 174, 239, 1) 23%,
    rgba(38, 34, 98, 1) 50%,
    rgba(239, 65, 54, 1) 77%
  );
}
