You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
1.6 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap');
3 years ago
:root {
--color-1: #2a555e;
3 years ago
--color-2: #70abaf;
--color-2-1: #bbdce2;
3 years ago
--color-3: #eff6ff;
3 years ago
--color-4: #c10001;
--color-5: #710002;
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
/* height: 100%; */
3 years ago
}
body {
position: relative;
background: var(--color-2-1);
3 years ago
display: flex;
flex-direction: column;
3 years ago
}
main {
max-width: calc(80ch + 4rem);
3 years ago
margin: 0 auto;
padding: 2rem;
margin-bottom: 5rem;
background: var(--color-3);
/* flex-grow: 1; */
3 years ago
}
#wallpaper {
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
header {
width: calc(80ch + 4rem);
margin: 0 auto;
3 years ago
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;
3 years ago
}
nav {
width: 100%;
3 years ago
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;
3 years ago
}