35 lines
559 B
SCSS
35 lines
559 B
SCSS
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 5rem 22rem;
|
|
|
|
.header {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 4rem;
|
|
|
|
h1 {
|
|
float: left;
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
}
|
|
|
|
.contentGrid {
|
|
display: grid;
|
|
gap: 1rem;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: var(--white);
|
|
padding: 1rem;
|
|
}
|
|
} |