mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-26 11:22:04 +02:00
37 lines
466 B
SCSS
37 lines
466 B
SCSS
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 1.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
div {
|
|
margin-top: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.p1 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.p2 {
|
|
font-size: 0.8rem;
|
|
a {
|
|
font-weight: bolder;
|
|
text-decoration: underline;
|
|
font-size: 0.9rem;
|
|
transition: 0.5s;
|
|
|
|
&:hover {
|
|
color: rgb(96 59 255) !important;
|
|
}
|
|
}
|
|
}
|