* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 10%);
  color: #ffffff;
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}

/* Page Transitions */
.page {
  display: none;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page.active {
  display: flex;
}

/* Main Button */
.main-button {
  background-color: hsl(0, 0%, 20%);
  color: white;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
  outline: none;
}

.main-button:hover {
  background-color: #666666;
  color: #ffffff;
}

.main-button:active {
  transform: scale(0.95);
}

/* Try Again Button */
.try-again-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: hsl(0, 0%, 20%);
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
  outline: none;
}

.try-again-button:hover {
  background-color: #666666;
}

.try-again-button:active {
  transform: scale(0.95);
}

/* Page Content */
.page-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-message {
  font-size: 24px;
  margin-top: 10px;
  color: #ffffff;
}

/* Failure Page Image */
.failure-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: hsl(0, 0%, 20%);
}

/* Time Highlight */
.time-highlight {
  font-size: 32px;
  font-weight: bold;
  color: #666666;
}

a:link {
  color: white;
}

/* Visited link */
a:visited {
  color: white;
}

/* Mouse hover */
a:hover {
  color: gray;
}

/* Active/clicked link */
a:active {
  color: white;
}

.fsttitle {
  color: white;
  padding: 20px 40px;
  font-size: 100px;
  font-weight: bold;
  border: none;
  box-shadow: none;
  outline: none;
}
