@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
  margin: 0;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5;
  height: 93vh;
}

.header {
  background-color: #333;
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.main-content-wrapper{
  width: -webkit-fill-available;
  border: 16px solid #232323;
  flex:1;
}

.main-content {
  text-align: center;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  color: #d32f2f;
  font-size: 72px;
  margin-bottom: 10px;
}

.description {
  color: #333;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.maintenance-image {
  max-width: 284px;
}

.footer {
  background-color: #FFFFFF;
  color: #313538;
  text-align: center;
  padding: 16px;
  position: absolute;
  bottom: 0;
  width: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.age-icon {
  max-width: 30px;
}
.copyright{
  color:#939697;
}

.footer-text {
  font-size: 14px;
  margin: 0;
}

footer p {
  margin: 0;
  font-size: 12px;
}

@media (max-width : 768px) {
  .main-content-wrapper{border:none}
  .title{font-size:48px;}
  .description{font-size:18px}
}
