@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');

body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
  background: linear-gradient(to bottom right, #240c0c, #640202, #200a0a);
  background-blend-mode: multiply;
  background-size: 200% 200%;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  width: 400px;
  height: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid #000;
}


.button-container {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.fill {
  --color: #000000;
  --hover: #000000;
}

.button {
  position: relative;
  margin: 0.4rem;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  border-radius: 10px;
  background: none;
  overflow: hidden;
  border: 1px solid black;
  box-shadow: 7px 3px 3px rgb(2, 0, 0);
  width: 200px; /* Add a fixed width for the buttons */
  opacity: 0; /* Initially hide the buttons */
  transition: opacity 0.5s ease-in-out;
}

.button.hover-in {
  opacity: 1; /* Show the buttons on hover */
}


.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--hover);
  transition: width 0.3s ease-in-out;
  z-index: -1;
}

.button:hover::before {
  width: 100%;
}

.button span {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: white;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button-wrapper {
  display: flex;
  align-items: center;
}

.question-button {
  margin-left: 10px;
  width: 25px;
  height: 25px;
  background-color: #000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  opacity: 0; /* Initially hide the question marks */
  transition: opacity 0.5s ease-in-out; /* Add a transition for opacity */
}

.question-button.hover-in {
  opacity: 1; /* Show the question marks on hover */
}


/* CSS for mobile devices */
@media (max-width: 480px) {
  .logo-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 0.15em solid #000;
    margin-right: -22px;
  }
}


