body {
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#outline {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 8px solid white;
  justify-content: center;
  align-items: center;
}

#outline img {
  margin-bottom: 32px;
  width: 60%;
}

#buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

#buttons button {
  font-weight: 00;
  width: 100%;

  color: #000000;
  background-color: #ffffff;
  font-size: 20px;
  border: none;
  border-radius: 16px;
  padding: 15px 50px;
  letter-spacing: 1px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #outline img {
    width: 80%;
    margin-bottom: 20%;
  }
}

@media (orientation: landscape) and (max-height: 768px) {
  #outline {
    width: 90%;
    height: 80%;
  }

  #outline img {
    width: 50%;
    margin-bottom: 16px;
  }

  #buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  #buttons button {
    font-size: 16px;
    padding: 10px 30px;
    width: auto;
  }
}
