/* Google Fonts import for Plus Jakarta Sans and Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
a {
  text-decoration:none;
  fill:inherit;
}

body {
  background: #f2edf5;
}

.under_construction_page {
  width: calc(100% - 96px);
    height: auto;
    font-family: "Inter", sans-serif;
    /* height: 100%; */
    background: #fbf9fc;
    border-radius: 24px;
    padding: 48px;
}

.Logo_Class {
	position: relative;
	margin:auto;
  transition: transform .4s;
}

#logo {
    width: 50%;
    height:auto;
    margin:auto;
    display:block;
    max-width:300px;
}

.Logo_Class:hover {
	transform: scale(1.05);
}

.construction_text {
  color: #000;
  display:block;
  margin:auto;
  text-align: center;
  font-size: 48px;
  margin-top: 1em;
}

@media screen and (min-width: 1024px) {
  .construction_text {
    font-size: 32px;
  }
}