52 lines
807 B
CSS
52 lines
807 B
CSS
@import url(/static/resources/fonts/Raleway/stylesheet.css);
|
|
@import url(/static/resources/fonts/Comfortaa/stylesheet.css);
|
|
|
|
body {
|
|
font-family: Raleway, sans-serif;
|
|
background-color: black !important;
|
|
color: white;
|
|
}
|
|
|
|
.overlay {
|
|
position: relative;
|
|
padding: 50px;
|
|
}
|
|
|
|
.btn-back {
|
|
position: relative;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.btn-back svg {
|
|
margin-left: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
path {
|
|
transition: 0.3s;
|
|
}
|
|
|
|
#particles-js {
|
|
background-color: transparent;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 0;
|
|
}
|
|
|
|
#background {
|
|
background-color: black;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 0;
|
|
background-image: url("/static/resources/images/background.avif");
|
|
opacity: 0.4;
|
|
background-size: cover;
|
|
}
|
|
|
|
|