You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
609 B
39 lines
609 B
@import "~font-awesome/css/font-awesome.css";
|
|
|
|
body {
|
|
position: relative;
|
|
color: white;
|
|
height: 100vh;
|
|
background-color: #000;
|
|
background-image: linear-gradient(45deg, rgba(29, 29, 29, 0.5) 10%, rgba(235, 184, 100, 0.7));
|
|
font-family: Arial, Helvetica, Helvetica Neue, serif;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0;
|
|
font-size: 2.25rem;
|
|
font-weight: bold;
|
|
letter-spacing: -0.025em;
|
|
color: #fff;
|
|
}
|
|
|
|
p {
|
|
font-size: 24px;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
opacity: 0.75;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
opacity: 1;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|