/* 404 Page Styles - Wyming Digital Brand */
body {
  margin: 0;
  font-family: 'Albert Sans', sans-serif;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

iframe {
  border: none;
  width: 100%;
}

/* Center content */
.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.box {
  max-width: 400px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
}

/* Headings */
h1 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;
  color: #94C3D2; /* brand blue */
}

p {
  color: #333333;
  margin: 10px 0 30px;
  font-weight: 400;
}

/* Links / Buttons */
a {
  display: inline-block;
  padding: 10px 18px;
  background-color: #FFFFFF; /* brand color */
  color: #94C3D2;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

a:hover {
  background-color: #75a1b5; /* slightly darker on hover */
}
