@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
html,
body {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site-container {
  font-family: "Poppins";
  color: #2f2f2f;
  display: grid;
  width: 100%;
  min-height: 10%;
  place-items: center;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  flex: 1;
}
.header {
  border-bottom: 1px solid #cacaca;
  height: 75px;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}
.footer {
  border-top: 1px solid #cacaca;
  min-height: 50px;
  width: 100%;
  font-family: "Poppins";
  color: #555555;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  background-color: white;
  z-index: 1000;
}
.footer * {
  padding: 0 1.5rem;
  font-family: "Poppins";
}
.maintenance-container {
  text-align: center;
  max-width: 800px;
  padding: 1.5rem;
}
.tpmd-logo {
  position: absolute;
  background: white;
  border: 1px solid #cacaca;
  left: 1.5em;
  top: 10px;
  width: 5.5em;
  height: 5.5em;
  border-radius: 100%;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 4.25rem;
}
.heading {
  font-size: 2.25rem;
  font-weight: 500;
  color: #2f2f2f;
}
.text {
  font-size: 1.25rem;
  color: #555555;
}

.gears-container {
  margin-top: 2rem;
}

.machine {
  width: 100%;
  max-width: 7rem;
}

.small {
  animation: counter-rotation 2.5s infinite linear;
  transform-origin: 100.136px 225.345px;
  fill: #cc4400;
}

.medium {
  animation: rotation 3.75s infinite linear;
  transform-origin: 254.675px 379.447px;
  fill: #cc4400;
}

.large {
  animation: counter-rotation 5s infinite linear;
  transform-origin: 461.37px 173.694px;
  fill: #cc4400;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes counter-rotation {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@media (min-width: 40em) {
  .tpmd-logo {
    left: 4em;
    width: 120px;
    height: 120px;
  }
  .logo {
    max-width: 93px;
  }
  .header {
    height: 96px;
  }
  .footer * {
    padding: 0 4rem;
  }
  .maintenance-container {
    text-align: center;
    max-width: 800px;
    padding: 1.5rem 4rem;
  }
}
