:root {
  --color-background: #f5f5f5;
  --color-lowerBackground: #f0f0f0;
  --color-highContrast: #3d3d3d;
  --color-mediumContrast: #666666;
  --color-border: #ebebeb;
}

* {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100dvh;
  width: 100dvw;
  background-color: var(--color-lowerBackground);
}

section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  top: 10%;
  height: 72px;
  width: 120px;
}

.wire {
  width: 20%;
  max-width: 288px;
  aspect-ratio: 4/1;
}

.maintenance-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.maintenance-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.maintenance-title {
  color: var(--color-highContrast);
  font-size: 14px;
  font-weight: 500;
  white-space: pre-line;
  text-align: center;
}

.maintenance-author-container {
  display: flex;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  gap: 8px;
}

.maintenance-author {
  color: var(--color-mediumContrast);
  font-size: 12px;
  font-weight: 400;
}

.maintenance-author-icon {
  height: 14px;
  width: 16px;
}

@media (max-width: 768px) {
  .wire {
    display: none;
  }

  .maintenance-content {
    justify-content: center;
  }
}
