html 
{
	font-family: Tahoma;
	-webkit-text-size-adjust: 100%;
	color: white;
}

a
{
	text-decoration: none;
	padding: .1em 0;
	color: white;
}

.body-background
{
	height: 100%; 
	background: #ffffff;
	background: linear-gradient(0deg,rgba(32, 32, 32, 1) 50%, rgba(0, 0, 0, 1) 100%);
	background-attachment: fixed;
	background-size: cover;
	background-repeat:no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

.top_landscape
{
	opacity: 0;
	transform: translate(0%, 2vh);	
	transition-property: transform, opacity, clip-path;
	display: flex; 
	direction: row; 
    position: sticky;
  	top: 0;
  	z-index: 999;
    height: 100px;
    background: rgba(16, 16, 16, 1);
	animation: top_animation 0.5s forwards;
}

.top_portrait
{
	opacity: 0;
	transform: translate(0%, 2vh);	
	transition-property: transform, opacity, clip-path;
	display: flex; 
	direction: column; 
    position: sticky;
  	top: 0;
  	z-index: 999;
    height: 150px;
    background: rgba(16, 16, 16, 1);
	animation: top_animation 0.5s forwards;
}

@keyframes top_animation 
{
	0%   {}
	100% {
 			opacity: 1;   
  			transform: translate(0%, 0%);
		 }
}

.menu-elements-portrait
{
	/*align-content: center;
	margin: 0px auto;
	font-size: 40px;*/
	align-content: center; 
	margin-left: 50px;
	font-size: 50px;
}

.menu-elements-portrait div
{		
	display: inline-block;
	flex-wrap: wrap;
	margin-right: 20px;
}

.menu-elements-portrait a::after
{
	content: '';
	width: 0px;
	height: 1px;
	display: block;
	background-color: white;
	transition: 300ms;
}

.menu-elements-portrait a:hover::after
{
	width: 100%;
}

.menu-elements-landscape
{
	align-content: center; 
	margin-left: 50px;
	font-size: 20px;
}

.menu-elements-landscape div
{		
	display: inline-block;
	flex-wrap: wrap;
	margin-right: 20px;
}

.menu-elements-landscape a::after
{
	content: '';
	width: 0px;
	height: 1px;
	display: block;
	background-color: white;
	transition: 300ms;
}

.menu-elements-landscape a:hover::after
{
	width: 100%;
}

.social-networks-portrait
{
	display: block; 
	text-align: center;
	bottom: 0px;
}

.social-networks-landscape
{
	display: inline-block;
	margin-left: auto; 
	margin-right: 0px; 
	text-align: center;
	align-content: center;
}

.social-networks-landscape img
{	
	width: 50px; 
}

.social-networks-portrait img
{	
	width: 150px; 
}

.social-networks-landscape a:hover
{	
	filter: brightness(2);
}

.social-networks-portrait a:hover
{	
	filter: brightness(2);
}

img.logo-outline-landscape
{
 	
	-webkit-filter: drop-shadow(1px 1px 0 white)
                    drop-shadow(-1px 1px 0 white)
                    drop-shadow(1px -1px 0 white)
                    drop-shadow(-1px -1px 0 white);

	filter: drop-shadow(1px 1px 0 white)
            drop-shadow(-1px 1px 0 white)
            drop-shadow(1px -1px 0 white)
            drop-shadow(-1px -1px 0 white);

	height: 50px; 
	width: 50px;
}

img.logo-outline-portrait
{
 	-webkit-filter: drop-shadow(1px 1px 0 white)
                    drop-shadow(-1px 1px 0 white)
                    drop-shadow(1px -1px 0 white)
                    drop-shadow(-1px -1px 0 white);

	filter: drop-shadow(1px 1px 0 white)
            drop-shadow(-1px 1px 0 white)
            drop-shadow(1px -1px 0 white)
            drop-shadow(-1px -1px 0 white);

	height: 150px; 
	width: 150px;
}

img.round-corner 
{
	object-fit: cover;
    border-radius: 0%;
}

.horizontal_line
{
	background-color: yellow; 
	color: yellow; 
	margin-left: 0px;
	height: 2px;
}