:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: #171717;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

.maintenance {
  min-height: 100vh;
  width: min(92vw, 900px);
  margin: 0 auto;
  padding: 8vh 20px 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.college-logo {
  display: block;
  width: 145px;
  height: auto;
  margin: 0 0 48px;
}

h1 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.message {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.4;
}

.divider {
  width: 170px;
  border-top: 1px solid #333;
  margin: 52px 0 14px;
}

.contact {
  margin: 0;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.35;
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.address {
  margin: 42px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.72rem;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .maintenance {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .college-logo {
    width: 125px;
    margin-bottom: 38px;
  }

  .message br {
    display: none;
  }

  .divider {
    margin-top: 42px;
  }

  .address {
    margin-top: 34px;
  }
}
