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.
44 lines
844 B
44 lines
844 B
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Yuji+Boku&display=swap');
|
|
|
|
html{
|
|
background: linear-gradient(300deg,#1a4974,#0b3965,#1b63a9);
|
|
background-size: 180% 180%;
|
|
animation: gradient-animation 15s ease infinite;
|
|
}
|
|
|
|
body {
|
|
margin:0;
|
|
|
|
padding: 0px;
|
|
font-family: Lato;
|
|
-webkit-font-smoothing: antialised;
|
|
-moz-osx-font-smoothing:greyscale;
|
|
overflow-x: hidden;
|
|
/*padding-bottom: 320px;*/
|
|
/*backgroung-image: url("./Group_3.svg");
|
|
/*background-position: bottom;
|
|
background-repeat: no-repeat;*/
|
|
color: white;
|
|
}
|
|
|
|
body *{
|
|
transition: all 500ms ease-in-out;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
@keyframes gradient-animation {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|