/* == GLOBAL RESET == */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  /* dont add the margin to the length/width of the page */
  box-sizing: inherit;
}

body {
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#maintenance {
  height: 100vh;
  text-align: center;
  background-image: url(/img/underconstruction2.png);
  background-size: cover;
}

.contact {
  padding: 8% 10% 0;
  font-size: 2rem;
  text-shadow: 1px 1px 5px lightslategray;
  line-height: 1.5;
}

@media (max-width: 768px) {
    .contact {
        font-size: 1rem;
    }
}