
@import url("reset.css");


body {
	font-family: "Lato", sans-serif;
	color: #FFF;
	background: linear-gradient(297deg, rgb(25, 236, 36) 19%, rgb(92, 91, 208) 35%, rgba(130,58,90,1) 57%, rgba(46,34,38,1) 83%);
	background-attachment: fixed;
}
.container {
	max-width: 1200px;
	margin-inline: auto;
	padding-block: 40px;
}
h1 {
	font-size: 34px;
	text-align: center;
	&:not(:last-child){
		margin-block-end: 20px;
	}
}
ul > * {
	margin-block-end: 15px;
}
ul > *:last-child {
	margin-block-end: 0px;
}
a {
	font-size: 20px;
	transition: color 0.3s;
	@media (any-hover: hover){
		&:hover{
			color: #ffeaa6;
		}
	}
}