* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: rgba(0, 0, 0, 1);
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}
.main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}
.wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1168px;
  margin: 0 auto;
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main-content-container {
  flex: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.left-design,
.right-design {
  position: absolute;
}
.left-design {
  top: 60px;
  left: 0;
}
.right-design {
  top: 60px;
  right: 0;
}
.left-design img,
.right-design img {
  width: 100%;
  height: 100%;
}
.content-box {
  max-width: 870px;
  margin: 0 auto;
  margin-top: 36px;
}
.logo img {
  width: 310px;
  height: auto;
}
.downtime-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(255, 255, 255, 1);
  opacity: 0.72;
}
.downtime-text span {
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-content {
  display: flex;
}
.contact-info {
  display: flex;
  align-items: center;
}
.contact-info:first-child {
  margin-right: 48px;
}
.contact-info p {
  margin-left: 16px;
  font-size: 16px;
}
.copyright p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

/* Responsive */

@media (max-width: 768px) {
  .main-content {
    padding: 0 16px;
  }
  .main-content-container {
    padding-top: 56px;
    padding-bottom: 36px;
  }
  .logo img {
    max-width: 180px;
    height: auto;
  }
  .left-design {
    top: 36px;
    left: 0;
    max-width: 56px;
    height: auto;
  }
  .right-design {
    top: 36px;
    right: 0;
    max-width: 56px;
    height: auto;
  }
  .main-title {
    font-size: 24px;
    line-height: 32px;
  }
  .downtime-text {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
  }
  .contact-info:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .copyright {
    margin-top: 28px;
  }
  .contact-info img {
    max-width: 24px;
    height: auto;
  }
  .copyright p {
    font-size: 14px;
  }
  .contact-info p {
    font-size: 14px;
    margin-left: 12px;
  }
}
