
:root {
  --site-background: rgba( 245, 245, 250, 1 );
  
  --site-text: rgba( 15, 15, 20, 1 );
  --site-text-opacity: rgba( 15, 15, 20, 0.1 );
}

* {
	padding: 0;
	margin: 0;
}

body {
	background-color: var( --site-background );
}

.Oskaras {
	width: 100%;
	height: 100%;
}

.width {
	width: 1080px;
	height: 100%;
	
	margin: 0 auto;
}

.width header {
	width: 100%;
	height: 150px;
}

.width header div.left, .width header div.right {
	width: 50%;
	height: 100%;
	
	display: inline-block;
	float: left;
	
	position: relative;
}

.width header .left .owner {
	position: absolute;
	
	left: 0;
	top: 100%;
	
	transform: translate(0, -100%);
	
	height: 50px;
	width: 100%;	
}

.width header .left .owner a {
	color: var( --site-text );
    line-height: 25px;
    width: 75%;
    display: block;
    letter-spacing: 10px;
    font-size: 13px;
	text-decoration: none;
	padding-left: 30px;
	
	border-left: 1px solid var( --site-text-opacity );
}

.width header .right .navigation {
	position: absolute;
	
	left: 0;
	top: 100%;
	
	transform: translate(0, -100%);
	
	height: 25px;
	width: 100%;
}

.width header .right .navigation a {
	color: var( --site-text );
    width: 175px;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    float: right;
    text-align: right;
    letter-spacing: 10px;
    text-decoration: none;
    border-right: 1px solid var( --site-text-opacity );
    padding-right: 30px;
}





.Oskaras .page {
    width: 1080px;
    height: 500px;
    margin-top: 100px;
    border-left: 1px solid var( --site-text-opacity );
    border-right: 1px solid var( --site-text-opacity );
    padding: 30px;
    box-sizing: border-box;
}
.page p {
	color: var( --site-text );
	font-size: 13px;
	letter-spacing: 10px;
}