@charset "utf-8";
/* CSS Document */


header {
  
    top: 0;
    left: 0;
   display: inline;

  
}

.burger {
       cursor: pointer;
	   margin: 0 40px 0 0;
}

.nav {
    position: fixed;

    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #000;
    color: white;
    overflow-y: auto;
    transition: right 0.3s;
    z-index:1200;
}

.nav ul {
    list-style: none;
   padding: 0;
   font-family: "Gilda Display", serif;
   font-size: 22px;
   letter-spacing: 2px;
}

.nav li {
    padding: 15px;
	display: block;
    width: 100%;
}

.nav li a {
    color: white;
    text-decoration: none;
}

.content {
    flex-grow: 1;
    transition: transform 0.3s;
    padding: 20px;
}

.nav-open .nav {
    right: 0;
}

.nav-open .content {
    transform: translateX(-300px);
}