body {
  background-color: #f4f4f4;
  color: #111;
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Center container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Main box */
.box {
  background-color: white;
  width: 600px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Title top-left */
.box h1 {
  margin: 0 0 15px 0;
  font-size: 24px;
}

/* Links styling */
a {
  color: #0077ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}