.site-header{
	position: relative;
	height: calc(100vh - 5em);
	overflow: hidden;
}
.site-header video{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	z-index: -1;
}
.site-header .blur{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(25px);
}
.site-header-info{
	z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    color: white;
    text-align: center;
    transition: transform 0.5s;
    user-select: none;
	background:#23254975;
}
.site-header-info:hover{
	transform:scale(1.05);
}
.site-header-info:hover button{
	box-shadow: 0 0 5px orange;
}
body:not(.port) .site-header-info{
	width: max(30em, 40%);
}
.site-header-info img{
	transform: rotate(320deg);
    width: 50%;
    margin: 20% 0 5% 0;
    box-shadow: 0 0 10px white;
    border-radius: 5px;
    transition: box-shadow 0.5s;
}
.site-header-info:hover img{
	box-shadow: 0 0 20px white;
}
.site-header-info p{
	margin:2em;
	font-size:2em;
}
.site-features{
	margin: 1em;
	border-bottom: 1px solid silver;
	text-align:center;
}
.site-feature{
	margin: 5em auto;
	width:min(40em, 100%);
}
body:not(.port) .site-feature{
	display: table;
	direction: ltr;
}
body:not(.port) .site-feature>div{
	display: table-cell;
	vertical-align: top;
}
body:not(.port) .site-feature:nth-child(2n){
	direction:rtl;
}
.site-feature>div{
	text-align:start;
	padding:2em;
}
.site-feature img{
	height: 15em;
	width: 15em;
	object-fit: cover;
	background-color: silver;
	border-radius: 5px;
	transition: border-radius 0.5s;
}
.site-feature img:hover{
	border-radius: 5px 30px 5px 30px;
}
section[name="site"]{
	font-family:tahoma;
}
section[name="site"] button{
	border-radius: 5px;
    border: 1px solid #50a2f2;
    padding: 0.5em 1em;
    background: linear-gradient(#008eff, #128ef0);
    color: white;
    cursor: pointer;
}