body {
  margin: 0px;
  min-height: 100dvh;
  background-color: rgb(20, 20, 20);
  overflow-x: hidden;
  overflow-y: hidden;
}

#background-image {
  min-height: 100dvh;
  background-image: url("/Images/Option1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  transition: opacity 1s;
}

@media (min-width: 1200px) {
  #menu-container {
    transition: transform 1.0s;
    position: absolute;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);

    height: 50%;
    aspect-ratio: 1/1;
    /*background-color:rgb(40, 40, 40);*/
  }
}

@media (max-width: 1200px) {
  #menu-container {
    transition: transform 1.0s;
    position: absolute;
    left: 50%;
    transform: translateY(-60%) translateX(-50%);

    height: 50%;
    max-width: 75%;
    aspect-ratio: 1/1;
    /*background-color:rgb(40, 40, 40);*/
  }
}

#menu {
  position: absolute;
  top: 50%;
  left: 50%;
  inset: 0;
  margin: auto;

  height: 75%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  /*background-color:rgb(60, 60, 60);*/
}

.menu-selector {
  transition: height 1.0s;

  position: absolute;
  top: 50%;
  left: 50%;
  inset: 0;
  margin: auto;

  height: 20%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgb(60, 60, 60);

  border-style: solid;
  border-width: 5px;
  border-color: rgb(245, 222, 179, 0.25);

  background-image: url("/Images/Option1.png");
  background-size: 300%;
  background-repeat: no-repeat;
  background-position: center;

  cursor: pointer;
  box-shadow: 0px 0px 10px 10px rgba(40, 40, 40, 0.5);
}

.menu-selector:hover {
  transition: height 1.0s;

  height: 30%;
  /*background-color:wheat;*/
}

.footer {
  position: absolute;
  top: 100svh;
  width: 100vw;
  height: 5%;

  transform: translateY(-100%);
  background-color: rgb(40, 40, 40);
  box-shadow: 0px 0px 10px 10px rgba(40, 40, 40, 0.75);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  display: none;
  position: absolute;
  max-width: 100vw;
  max-height: 100dvh;
  top: 0px;
  left: 0px;
}

.page.active {
  display: block;
}