2023-11-20 16:52:40 +01:00
|
|
|
* {
|
2023-11-30 14:02:52 +01:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
2023-11-20 16:52:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-12-01 03:23:59 +01:00
|
|
|
font-family: 'Kanit', sans-serif;
|
2023-11-30 14:02:52 +01:00
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
|
|
color: var(--clr-Murrey);
|
|
|
|
background-color: var(--clr-Lavender);
|
2023-11-20 16:52:40 +01:00
|
|
|
}
|
|
|
|
|
2023-12-01 03:23:59 +01:00
|
|
|
footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin: .5rem;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 300;
|
|
|
|
a, p {
|
|
|
|
color: var(--clr-Murrey);
|
|
|
|
}
|
2023-11-30 14:02:52 +01:00
|
|
|
}
|
2023-12-01 17:33:37 +01:00
|
|
|
|
|
|
|
.footer-mobile {
|
|
|
|
display: none;
|
|
|
|
margin: 0 var(--container-size);
|
|
|
|
}
|
|
|
|
|