31 lines
571 B
CSS
31 lines
571 B
CSS
/*
|
|
------------------------------------------------------------------------------------------
|
|
General
|
|
------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
|
|
|
|
* {
|
|
font-family: "Poppins", sans-serif;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 40px;
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #41423f;
|
|
}
|
|
|
|
.contentArea
|
|
{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|