38 lines
642 B
CSS
38 lines
642 B
CSS
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,700&family=Phudu:wght@300&display=swap');
|
|
|
|
body {
|
|
padding-top: 50px;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
background: linear-gradient(180deg, #00152b 0%, #4d89ea 50%, #55cc55 100%);
|
|
}
|
|
|
|
#logo {
|
|
float: left;
|
|
width: 150px;
|
|
margin-right: 50px;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
font-family: 'DM Sans', sans-serif;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
p {
|
|
color: white;
|
|
font-family: 'Phudu', cursive;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
a {
|
|
color: #f0e69c;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: #f0e69c;
|
|
color: black;
|
|
padding: 5px;
|
|
text-decoration: none;
|
|
}
|