@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
html {
    height: 100%;
}
body
{
	background: linear-gradient(-45deg, #1464f7, #5afc4e, #23a6d5, #1464f7);
	background-size: 400% 400%;
	animation: gradient 30s ease infinite alternate;

	font-family: 'Montserrat', sans-serif;
	color: rgb(68, 67, 67);
	font-smooth: always;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.content
{
	margin: auto;
	text-align: center;
	background-color: white;
	width: 50%;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 5px 5px 10px rgb(43, 43, 43);
}