*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.maintenance:before,
.maintenance:after {
  pointer-events: none;
}

.maintenance {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222220;
}


.maintenance__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 24px;
}

.maintenance__logo {
  display: block;
  width: 212px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 64px;
}

.maintenance__eyebrow {
  font-family: "Work Sans", sans-serif;
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 500;
  color: #FF4F1E;
}

.maintenance__title {
  font-family: "Outfit", sans-serif;
  color: #F7F5F3;
  font-size: 64px;
  line-height: 108%;
  font-weight: 700;
  letter-spacing: -1%;
  margin: 0 0 24px 0;
}

.maintenance__button {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 24px;

  background: #ffffff;
  font-family: "Work Sans", sans-serif;
  color: #222220;
  text-decoration: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.maintenance__button:hover {
  background-color: #4e4e4d;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.maintenance__button:active {
    background-color: #4e4e4d;
  color: #ffffff;
}

/* ===== Décors coins ===== */

.maintenance:before{
    content: '';
    display: block;
    width: 340px;
    height: 340px;
    background-image: url("../img/coin-sup-g.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top:0;
    left:0;
}

.maintenance:after{
    content: '';
    display: block;
    width: 340px;
    height: 340px;
    background-image: url("../img/coin-inf-d.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom:0;
    right:0;
}


/* ===== Responsive ===== */


@media (max-width: 768px) {
  .maintenance__content {
    max-width: 520px;
    padding: 20px;
  }

  .maintenance__button {
    min-width: 140px;
    min-height: 48px;
    padding: 0 20px;
  }
}

@media (max-width: 520px) {

  .maintenance__logo {
    width: 190px;
    margin-bottom: 56px;
  }

  .maintenance:before, .maintenance:after{
    width: 240px;
    height: 240px;
  }

  .maintenance__title {
    font-size: 48px;
  }
}