@font-face {
  font-family: "Averta";
  src: url("./fonts/Averta-Semibold.woff2") format("woff2"),
    url("./fonts/Averta-Semibold.woff") format("woff"),
    url("./fonts/Averta-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Averta";
  src: url("./fonts/Averta-ExtraBold.woff2") format("woff2"),
    url("./fonts/Averta-ExtraBold.woff") format("woff"),
    url("./fonts/Averta-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

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

body {
  font-family: "Averta", Arial, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 100vh;
  background-color: #f8f9fa;
  color: #333;
}

.maintenance-container {
  text-align: center;
  max-width: 500px;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 1;
  margin-left: 10%;
}

h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.2rem;
  color: #666;
}

p:last-of-type {
  margin-bottom: 2rem;
}

.countdown {
  display: flex;
  justify-content: space-between;
  max-width: 200px;
  margin: auto;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown span {
  font-size: 2rem;
  color: #333;
}

.countdown p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.background {
  background-color: white;
  width: 100%;
  height: 100%;
  margin-left: auto;
  position: absolute;
  display: flex;
  justify-content: flex-end;
}

.background::before {
  width: 100%;
  height: 100%;
  padding-top: 104%;
  position: static;
  top: unset;
  left: unset;
  background: none;
}

.background .image {
  width: 65%;
  height: 100%;
  /* position: absolute; */
  top: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

@media (max-width: 600px) {
  .maintenance-container {
    margin: auto;
  }
}

@media (max-width: 500px) {
  .maintenance-container {
    margin-left: 0;
    max-width: 100%;
  }
}
