/* General Styles */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black; /* Set background to black */
  color: white; /* Set text color to white */
}

/* Header Container */
.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  text-align: center;
  width: 60%;
}

/* Header Text Styles */
.header-container h1,
.header-container h2,
.header-container h3 {
  margin: 0;
  color: white; /* Set header text color to white */
}

.header-container h1 {
  font-size: 3rem;
}

.header-container h2 {
  font-size: 3rem;
  font-family: "Helvetica", sans-serif;
}

.header-container h3 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Description Section */
.description {
  max-width: 60%;
  text-align: justify;
  margin-top: 20px;
  padding: 20px;
  font-family: "Helvetica", sans-serif;
}

/* Styling <a> Links */
.description a {
  color: white; /* Set link color to white */
  text-decoration: none; /*Remove underline (optional)*/
}

.description a:hover {
  text-decoration: underline; /* Underline on hover (optional) */
}

/* Hide elements with 'hidden' class */
.hidden {
  display: none;
}

/* Temporary Tip Styling */
#temporary-tip {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  font-family: "Helvetica", sans-serif;
  color: white; /* Set tip text color to white */
}
