:root {
  --red-font-regular: 'Proxima Nova Regular';
  --red-font-novabold: 'proxima_novabold';
  --red-color-green: #008D2F;
  --red-color-gray: #858488;
  --red-color-gray-light: #D5D5D2;
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url("fonts/ProximaNova-Regular.woff2") format("woff2"), url("fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'proxima_novabold';
  src: url("fonts/proxima_nova_bold-webfont.woff2") format("woff2"), url("fonts/proxima_nova_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; 
}

html {
  height: 100%; 
}

* {
  box-sizing: border-box;
}

body {
  color: var(--red-color-gray);
  font-family: var(--red-font-regular);
  height: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.maintenance {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
}

.maintenance .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  height: 100%;
}

.maintenance .content img{
  max-width: 100%;
  width: 100%;
}

.maintenance h2 {
  color: var(--red-color-green);
  font-family: var(--red-font-bold);
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 40px;
  text-align: center;
  width: 100%;
}

.maintenance h3 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-family: var(--red-font-bold);
}

.maintenance p {
  text-align: center;
  width: 70%;
}

.maintenance .logo {
  display: flex;
  width: 100%;
  padding: 40px 0px;
  justify-content: center;
  border-bottom: 1px solid #e7e6e9;
}

.maintenance .logo-img {
  height: 70px;
}

.maintenance a {
  background-color: var(--red-color-green);
  width: 120px;
  border-radius: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}