* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  background-color: #6c8bc6;
  display: flex;
  align-items: center;
}

.logo {
  height: 90vh;
  margin-top: auto;
  max-height: 90vh;
  margin-top: 5vh;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear {
  opacity: 0.2;
  width: 100px;
  margin: 0 auto;
  animation: turn 2s linear infinite;
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.construction {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.construction h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
}
.construction p {
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
  margin: 10px 0;
}
.construction h2 {
  margin: 0;
  margin-top: 25px;
  margin-bottom: 5px;
}
.construction a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .logo img {
    object-fit: contain;
  }

  .construction {
    margin: 0 20px;
  }
}