* {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0;
}

body {
	background-color: black;
}

.name {
	font-family: PermanentMarker;
	color: white;
}

@media screen and (orientation: landscape) {
	.header {
		height: 100px;
	}

	.header_logo {
		position: fixed;
		background-color: white;
		border-bottom-right-radius: 25px;
		height: 100px;
		width: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0.5px 0.5px 0px 7px rgb(124, 124, 124);
		z-index: 2;
	}

	.header_menu {
		position: fixed;
		background-color: white;
		box-shadow: 0.5px 7px rgb(124, 124, 124);
		width: 100%;
		height: 50px;
		z-index: 1;
		padding-left: 100px;
		display: flex;
		align-items: center;
	}

	.text_name {
		margin-top: 3px;
		font-family: Ubuntu;
		text-align: center;
		color: white;
	}

	.link_line {
		margin: 10px 0px;
		border: solid 2px rgba(255, 255, 255, 0.2);
	}
}

@media screen and (orientation: portrait) {
	.header {
		background-color: white;
		width: 100%;
		height: 75px;
		display: flex;
		align-items: center;
		box-shadow: 0px 5px 0px 0px rgb(124, 124, 124);
	}

	.header_logo {
		height: 75px;
		width: 75px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.text_name {
		margin-top: 15px;
		font-family: Ubuntu;
		text-align: center;
		color: white;
	}

	.link_line {
		margin: 10px 0px;
		border: solid 2px rgba(255, 255, 255, 0.2);
	}
}

.button {
	filter: invert(1);
	margin-left: 20px;
}

.ctr-white {
	font-family: Ubuntu;
	text-align: center;
	color: white;
}


.zakruglenie {
	border-radius: 10px;
}

@font-face {
	font-family: 'Ubuntu';
	src: url(files/fonts/Ubuntu.ttf);
}

@font-face {
	font-family: 'PermanentMarker';
	src: url(files/fonts/PermanentMarker.ttf);
}

a.anim {
	animation-duration: 4s;
	animation-name: anim1;
	animation-iteration-count: infinite;
}

@keyframes anim1 {
	0% {
		color: yellow;
		background-color: black;
	}

	25% {
		color: rgb(0, 238, 255);
		background-color: black;
	}

	50% {
		color: red;
		background-color: black;
	}

	75% {
		color: rgb(0, 238, 255);
		background-color: black;
	}

	100% {
		color: yellow;
		background-color: black;
	}
}

@keyframes blurbutton {
	0% {
		filter: blur(0);
	}

	100% {
		filter: blur(3px);
	}
}