|
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap');
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--color-1: #2a555e;
|
|
|
|
|
|
|
|
--color-2: #70abaf;
|
|
|
|
--color-2-1: #bbdce2;
|
|
|
|
|
|
|
|
--color-3: #eff6ff;
|
|
|
|
|
|
|
|
--color-4: #c10001;
|
|
|
|
--color-5: #710002;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
/* height: 100%; */
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
background: var(--color-2-1);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
max-width: calc(80ch + 4rem);
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
padding: 2rem;
|
|
|
|
margin-bottom: 5rem;
|
|
|
|
|
|
|
|
background: var(--color-3);
|
|
|
|
|
|
|
|
/* flex-grow: 1; */
|
|
|
|
}
|
|
|
|
|
|
|
|
#wallpaper {
|
|
|
|
z-index: -1;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
width: calc(80ch + 4rem);
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
background: #ffffff88;
|
|
|
|
|
|
|
|
height: 15rem;
|
|
|
|
|
|
|
|
padding: 0 2rem;
|
|
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
backdrop-filter: blur(4px);
|
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
|
|
|
color: var(--color-1);
|
|
|
|
font-size: 2.5rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
height: 5rem;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
background: var(--color-2);
|
|
|
|
color: var(--color-1);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Typography */
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
b, strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 1rem 0 0;
|
|
|
|
|
|
|
|
color: var(--color-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4 {
|
|
|
|
color: var(--color-5);
|
|
|
|
font-weight: 400;
|
|
|
|
}
|