html, body {
width:100%;
height:100%;
}
body {
background-color:white;
background:url(/img/main.background.jpg) center center fixed;
overflow: hidden;
font-family: "Lato", sans-serif;
}
#top-border, #right-border, #bottom-border, #left-border {
background-color:#191919;

position:fixed;
}
#top-border {
width:100%;
height:30px;
z-index:99;
top:0px;
left:0px;
right:0px;

}
#right-border {
width:30px;
height:100%;
z-index:97;
top:0px;
bottom:0px;
right:0px;

}
#bottom-border {
width:100%;
height:30px;
z-index:98;
bottom:0px;
left:0px;
right:0px;

}
#left-border {
width:30px;
height:100%;
z-index:97;
top:0px;
bottom:0px;
left:0px;

}
#main {
position:absolute;
z-index:10;
top:30px;
left:30px;
right:30px;
bottom:30px;
width:100%;
height:100%;
transition: background-color 1s;
}

#logo {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    min-height: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo img {
max-height:65%;
width:auto;
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
}

/* HAMBURGLER MENU */

#nav-wrapper {

}

.navigation {
	position: fixed;
    z-index: 1;
    top: 40px;
    right: 30px;
    left: 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding-top: 0px;
	color:#191919;
}

.navigation a {
    text-decoration: none;
	color:#fff;
}

.navigation ul {
    margin-top:60px;
    text-align:center;
    list-style:none; 
    margin-left:auto;
    margin-right:auto;
	padding: 0px;
}


.menulist {
    width:100%;
}


.logo {
    text-align:center;
    margin:0 auto;
}

.line1, .line2, .line3 {
	margin-top: 5px;
    background-color: #a51e22;
    width: 40px;
    height: 6px;
    display: block;
    position: relative;
    opacity: 1.0;
    border-radius: 15%;
    transition: all .3s;
}

.line1.active {
transform: rotate(270deg);
    opacity: 0.0;
    top: 5px;
}

.line2.active {
  transform: rotate(45deg);
}

.line3.active {
transform: rotate(-45deg);
    top: -11px;
}

.menuitems {
    padding-top:12px;
    padding-bottom:12px;
    text-decoration: none;
    list-style:none;
    font-size: 70px;
    display: inline-block;
    position:relative;	
    text-align:center;
    opacity:0.0;
    transition: all .5s ease-in-out;
}

.menuitems:after {
  content:'';
  display:block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .2s;
}

.menuitems:hover::after {
    width:100%;
}

#closebtn {
    height: 25px;
    width: 25px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-decoration: none;
    font-size: 36px !important;
    z-index: 100;
    cursor: pointer;
    trainsition:background-position .3s;
}