54 lines
755 B
SCSS
54 lines
755 B
SCSS
section {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 32px;
|
|
img {
|
|
width: 32px;
|
|
height: 32px;
|
|
cursor: pointer;
|
|
margin-left: 48px;
|
|
&:hover {
|
|
width: 36px;
|
|
height: 36px;
|
|
background-color: var(--light-gray);
|
|
border-radius: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
padding-bottom: 24px;
|
|
font-size: 90px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 44px;
|
|
font-weight: 700;
|
|
padding: 48px 0 24px 0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
padding: 24px 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
a {
|
|
color: var(--light-blue);
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|