
@font-face {
	font-family: mainFont;
	src: url(../fonts/Quicksand-Regular.ttf);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: mainFont;
	cursor: none;
	/*	background: #7b7b7b;*/
}

html, body {
	background-color: #e2e9d3;
	height: 100vh;
	background-image: radial-gradient(circle, #EFF6E0, #e2e9d3);
}

li, a, button {
	font-weight: 1000;
	font-size: 25px;
	color: #124559;
	text-decoration: none;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 10%;
}

.logo {
	width: 71px;
	height: 47px;
}

.rotate:hover {
	animation: rotation 3s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.nav__links {
	list-style: none;
}

.nav__links li {
	display: inline-block;
	padding: 0px 20px;
}

.nav__links li a {
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
	color: #598392;
}

button {
	width: 64px;
	height: 64px;
	background-repeat: no-repeat;
	/*	background-color: ;*/
	border: none;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
}

button:hover {
	color: #598392;
}

.changelog {
	padding: 200px 0;
}

.changelog__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	height: 90%;
	text-align: center;
	padding: 30px;
}

.changelog__heading {
	font-size: 3rem;
	margin-bottom: 24px;
	color: #124559;
}

.changelog__description {
	font-size: 2.5rem;
	color: #124559;
}

@media screen and (max-width: 768px) {
	.changelog__heading {
		font-size: 3rem;
	}

  .changelog__description {
		font-size: 2rem;
	}
}

.copyright__links {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: #124559;
    padding: 5px; /* Optional: some padding */
    border-radius: 3px; /* Optional: rounded corners */
}
