* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: "Manrope";
src: url("./fonts/Manrope.woff2") format("woff2"),
url("./fonts/Manrope.woff") format("woff");
font-weight: 200 800;
font-display: swap;
}
body {
font-family: "Manrope", sans-serif;
background-color: #fff;
color: #31323a;
height: 100vh;
width: 100%;
overflow-x: hidden;
}
.maintenance-wrapper {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
background-image: url("./static/desktop-background.png");
background-repeat: no-repeat;
background-position: right center;
background-size: 70vw auto;
}
.content {
width: 45%;
max-width: 600px;
padding-left: 5%;
padding-right: 20px;
margin-bottom: 30vh;
}
h1 {
font-family: "Manrope", sans-serif;
font-weight: 700;
font-size: 50px;
line-height: 150%;
color: #331b3c;
margin-bottom: 24px;
}
p {
font-family: "Manrope", sans-serif;
font-weight: 600;
font-size: 22px;
line-height: 150%;
color: #31323a;
}
@media (max-width: 900px) {
.maintenance-wrapper {
background-image: url("./static/mobile-background.png");
background-position: top center;
background-size: 100% auto;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.content {
width: 100%;
max-width: 100%;
padding: 0 24px;
margin-top: 90vw;
margin-bottom: 0;
text-align: left;
padding-bottom: 40px;
}
h1 {
font-size: 28px;
margin-bottom: 16px;
}
p {
font-size: 16px;
font-weight: 600;
}
}