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.

69 lines
1.4 KiB
CSS

8 months ago
@font-face {
7 months ago
font-family: 'worksans';
src: url('css/fonts/worksans/WorkSans-Regular.woff') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'worksans';
src: url('./css/fonts/worksans/WorkSans-Bold.woff') format('opentype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'worksans';
src: url('./css/fonts/worksans/WorkSans-Italic.woff') format('opentype');
font-weight: normal;
font-style: oblique;
}
@font-face {
font-family: 'worksans';
src: url('./css/fonts/worksans/WorkSans-Bold.woff') format('opentype');
font-weight: bold;
font-style: oblique;
}
8 months ago
body {
7 months ago
font-family: 'worksans', sans-serif;
8 months ago
font-size: calc(1rem + 1vw);
min-height: 100vh;
background-color: #130149;
7 months ago
text-align: center;
margin: 60px;
box-sizing: border-box;
/* Center the content */
8 months ago
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
7 months ago
margin-top: 30px;
8 months ago
margin-bottom: 20px;
}
h2 {
7 months ago
font-family: 'worksans', sans-serif;
font-style: oblique;
font-size: 1.1rem;
8 months ago
color: white;
7 months ago
margin-top: 30px;
8 months ago
}
h3 {
7 months ago
font-size: 0.9rem;
margin-top: 500px;
8 months ago
}
#header {
7 months ago
font-family:'worksans', sans-serif;
font-size: calc(1rem + 0.5vw);
margin-top: 15px;
8 months ago
color: white;
}