* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  color: white;
  background-color: black;
  background-image: url("background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  font: 500 18px "Mona Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: white;
  text-decoration: none;
}

.header {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.header-title {
  font-size: 25px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .header-title {
    display: none;
  }
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 30px;
}

.domain-title {
  font-size: 45px;
  display: flex;
  color: #00E0EC;
  font-weight: 700;
}

.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
}

.footer {
  width: 100%;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 180px;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    padding: 50px 0;
    gap: 30px;
    height: auto;
  }
}

.footer-divider {
  border-color: #4FEAFF;
  width: 90%;
}

@media (min-width: 601px) {
  .footer-divider {
    display: none;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 600px) {
  .footer-left {
    align-items: center;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 50px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.powered-by {
  width: 200px;
}