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.

47 lines
584 B
CSS

:root {
--color-1: #2a555e;
--color-2: #70abaf;
--color-3: #eff6ff;
--color-4: #c10001;
--color-5: #710002;
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
}
body {
position: relative;
background: var(--color-3);
margin-bottom: 1000px;
}
main {
max-width: 100ch;
margin: 0 auto;
}
#wallpaper {
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
header {
display: flex;
flex-direction: column;
}
nav {
display: flex;
flex-direction: row;
justify-content: flex-end;
}