body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0078d7; /* Blue screen color */
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}

.bsod {
  max-width: 75%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.face {
  font-size: 8rem;
  margin: 0;
  margin-bottom: 20px;
}

.main-message {
  font-size: 1.5rem;
  margin: 0 0 20px 0;
}

.percentage {
  font-size: 1.2rem;
  margin: 0 0 20px 0;
}

.qr-info-container {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  margin: 20px 0;
}

.qr-image {
  width: 140px;
  height: 140px;
  margin-right: 20px;
}

.info-text {
  max-width: inherit;
}

.info {
  font-size: 0.9rem;
  margin: 0; /* Reset margin */
}

.info:nth-of-type(2) {
  margin-top: 12%; /* Space between the paragraphs */
}

a {
  color: white;
}

/* Footer Styles */
.footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  text-align: right;
  font-size: 0.7rem;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

/* Contact Page Styles */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1e1e2f; /* Dark background color */
  color: #eaeaea; /* Light text color */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0);
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-list a {
  color: #4aa3df; /* Light blue link color */
  text-decoration: underline;
}

.contact-list a:hover {
  text-decoration: none;
  color: #89cff0; /* Lighter blue on hover */
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1rem;
  color: #4aa3df; /* Light blue link color */
  text-decoration: underline;
}

.back-link:hover {
  text-decoration: none;
  color: #89cff0; /* Lighter blue on hover */
}
