body {
  background: #222 url("/img/pexels-4254548-crop2.jpg") center/cover fixed; /* shorthand for size, position, attachment */
  color: white;
  font-size: 13.5px;
  font-family: "Open Sans", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal center */
  justify-content: center;  /* vertical center */
  height: 100vh;
  margin: 0;
  gap: 20px; /* optional spacing between elements */
}

a {
  color: #33c1ff;
}

a:hover {
  color: #95dfff;
}

.links {
  border-top: 1px solid #ccc;
  background: rgba(238, 238, 238, 0.05);
  padding-left: 25px;
  padding-right: 25px;
  list-style-type: none;
  text-align: center;
}

/* For the first link in the links bar */
.link-first {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding: 10px 11px 15px 2px;
  text-align: center;
}

.link {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding: 10px 10px 15px 10px;
  text-align: center;
}

/* For the last link in the links bar */
.link-last {
  display: inline-block;
  padding: 10px 9px 15px 2px;
  text-align: center;
}

.main {
  width: 500px;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 2px #42c6ff;
  margin: 0 auto; /* horizontal centering, vertical handled by flex */
}

.main-inner {
  padding: 15px 25px;
}

/* Prevent image overflow */  
.main img {
  max-width: 100%;
  height: auto;
}

.footer {
  padding: 15px 0 0 0;
  text-align: center;
  font-size: 12px;
}

/* Mobile compatibility */
@media (orientation: portrait) {
  .main {
    width: 80%;
  }
}