61 lines
763 B
CSS
61 lines
763 B
CSS
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;800&display=swap');
|
||
|
|
||
|
* {
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: 'Nunito', sans-serif;
|
||
|
background-color: #f1efe9;
|
||
|
color: #282828;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-weight: 800;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
min-height: 100vh;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
width: 80%;
|
||
|
margin: 0 auto;
|
||
|
margin-top: 5vh;
|
||
|
}
|
||
|
|
||
|
.main h1 {
|
||
|
font-size: 8vh;
|
||
|
}
|
||
|
|
||
|
.main p {
|
||
|
padding-top: 0.5vh;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
background-color: #282828;
|
||
|
color: #f1efe9;
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.main a {
|
||
|
color: #7d5fff;
|
||
|
}
|
||
|
|
||
|
.footer a {
|
||
|
color: #f1efe9;
|
||
|
}
|