120 lines
1.8 KiB
CSS
120 lines
1.8 KiB
CSS
*{
|
|
padding: 0;
|
|
background-color: var(--baseBlue);
|
|
}
|
|
|
|
a, h1, h2, h3, h4, h5, h6, label{
|
|
text-decoration: none;
|
|
color: inherit;
|
|
margin: 0 !important;
|
|
padding: 0;
|
|
}
|
|
|
|
.flex{
|
|
display: flex;
|
|
}
|
|
|
|
:root{
|
|
--baseBlue: #242430;
|
|
--blue: #4D54BA;
|
|
--lightBlue: #54AAFF;
|
|
--white: #fff;
|
|
}
|
|
|
|
.wrapper{
|
|
min-height: 80vh;
|
|
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-self: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.baseBlue{
|
|
color: var(--baseBlue);
|
|
}
|
|
|
|
.blue{
|
|
color: var(--blue);
|
|
}
|
|
|
|
.white{
|
|
color: var(--white);
|
|
}
|
|
|
|
.lightBlue{
|
|
color: var(--lightBlue);
|
|
}
|
|
|
|
.container{
|
|
padding: 0 7%;
|
|
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-self: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.arial-regular{
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.arial-bald{
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.f14{
|
|
/* font-size: 14px; */
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.column{
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* ------------------------ ---------------------- ------------------------------ */
|
|
.fontCenter{
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-self: center;
|
|
align-items: center;
|
|
font-size: 160px;
|
|
}
|
|
|
|
.fontCenter1{
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-self: center;
|
|
align-items: center;
|
|
font-size: 39px;
|
|
padding: 0 0 4%;
|
|
}
|
|
|
|
.text{
|
|
width: 50%;
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-self: center;
|
|
align-items: center;
|
|
/* margin-top: 12vw; */
|
|
padding: 5%;
|
|
/* border: var(--blue) solid 3px;
|
|
border-radius: 20px; */
|
|
}
|
|
|
|
.lilText{
|
|
font-size: 20px;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.a1{
|
|
min-height: 100vh;
|
|
} |