html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}

#bg-home {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: auto; 
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.center {
  position: fixed;
  top: 90%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  z-index: 1;
}

.box {
  padding: 4px 8px;
  border-radius: 4px;
  color: rgb(181, 191, 226);
  font-family: monospace;
  font-weight: bolder;
  font-style: normal;
  background: transparent;
  font-size: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex; 
  align-items: center;
  justify-content: center;
}
  
.box:hover {
  background: rgb(181, 191, 226);
  color: black;
  cursor: pointer;
}

#bg-aspects {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: auto; 
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.bg-four {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.bg-fourthree {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

