@font-face {
	font-family: 'silkaregular';
	src: url('fonts/silka-regular-webfont.eot');
	src: url('fonts/silka-regular-webfont.eot?#iefix') format('embedded-opentype'),
		 url('fonts/silka-regular-webfont.woff2') format('woff2'),
		 url('fonts/silka-regular-webfont.woff') format('woff'),
		 url('fonts/silka-regular-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;

}

body {
	padding: 0;
	margin: 0;
	background: rgb(48,44,124);
	background: linear-gradient(144deg, rgba(48,44,124,1) 20%, rgba(104,54,233,1) 100%);
	width: 100vw;
	height: 100vh;
	font-family: "silkaregular", sans-serif;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}

.content {
	color: white;
	width: 50vw;
}

.img-container {
	text-align: center;
}
.logo {
	width: 150px;
}

p {
	width: 60%;
	margin: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 18px;
	line-height: 26px;
}

.links-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

ul.links {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 0 auto;
}
ul.links li {
	font-size: 22px;
}

a {
	display: inline-block;
	color: white;
	background: transparent;
	border-radius: 6px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 42px;
	transition: all ease 0.6s;
}

a:hover {
	background: white;
	color: rgba(104,54,233,1);
	transform: scale(1.2);
}