@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

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

html,
body {
  height: 100%;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
  margin-bottom: 1rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main {
  background-color: rgb(41, 35, 92);
  flex-grow: 1;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main.error-page {
  background-color: #6368a3;
}

.main::before {
  content: "";
  position: fixed;
  top: -370px;
  right: -240px;
  width: 100%;
  height: 868px;
  background-image: url(./union3.svg);
  background-position: 0 -561px;
  background-size: auto;
  background-repeat: no-repeat;
  transform: rotate(0.9turn);
  max-width: 500px;
  pointer-events: none;
  z-index: 0;
}
section {
  z-index: 2;
}

.innerSection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.underConstructionContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  max-width: 500px;
}

.underConstructionContent img {
  max-width: 270px;
  width: 100%;
  height: auto;
  margin: 3rem 0;
}

.underConstructionContent h1 {
  font-size: 21px;
  color: #ff9933;
  font-weight: 800;
  margin-bottom: 2rem;
}

.underConstructionContent p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.underConstructionContent a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight:  bolder;
}

.footer {
  background-color: rgb(69, 70, 139);
  padding: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  color: rgb(197, 200, 223);
  font-size: 16px;
  max-width: 500px;
  text-align: center;
}

@media (max-width: 700px) {
  .underConstructionContent {
    max-width: 100%;
    padding: 0 1rem;
  }
}
