@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url(normalize.css);

body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	background: linear-gradient(79deg,#357cfe,#b61222,#5530bf,#40c2f9);
	background-size: 240% 240%;
	animation: gradient-animation 4s ease infinite;
	-webkit-user-select: none; /* Safari and other webkit browsers */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by most modern browsers */
}

.gora {
	text-align: center;
	padding: 10px;
	border: 2px dotted black;
	border-radius: 20px;
}

.dol {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 30px;
	padding: 10px;
	border: 2px dotted black;
	border-radius: 20px;
}

@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}