body{
    box-sizing: border-box;
    margin:0;
    padding: 0;
    background: #000;
    font-family: 'PT Sans', sans-serif;
}
.wrapper {margin:0 auto;
    width:1200px;}

.container {
    display: grid;
    grid-template-areas: 
      "header header header"
      "nav content content"
      "footer footer footer";
    grid-template-columns:30% 70%;
    grid-template-rows:219px auto 50px;
}
h1,h2,h3,h4 {
    font-family: 'Playfair Display', serif;
}
header {
    grid-area: header;
    background: url(img/header.jpg) no-repeat;
    position: relative;
    border-radius: 5px;
    border: 2px solid #BC7908;
}
nav{
    grid-area: nav;
    background: #FFF;
    margin: 10px 10px 0 0;
    border: 2px solid #BC7908;
    border-radius:5px;
    height:500px;
}

nav::after {
    content: url(img/reel.jpg);
    margin-left:20px;
}

section {
    grid-area: content;
    background: #FFF;
    margin-top: 10px;
    border: 2px solid #BC7908;
    border-radius:5px;
}

h1.title{
    font-size:40px;
    font-weight: 900;
    position: absolute;
    top:0;
    right:80px;
}

h2.subtitle{
    font-size:24px;
    position: absolute;
    top:60px;
    right:20px;
}

h2.menu {
    text-align: center;
    border-top: 4px solid #FEED91;
    border-bottom: 4px solid #FEED91;
    margin: 20px;
}
h2.arttitle {
    border-top: 4px solid #FEED91;
    border-bottom: 4px solid #FEED91;
    margin: 20px;
}
p {
    margin:20px;
    line-height:1.4;
}

footer {
    grid-area: footer;
    background: #BC7908;
    border-radius:5px;
    margin-top:10px;
}

footer p{
    text-align: center;
    line-height: 0;
}

footer p a{
    color: #002030;
}
nav ul li {
    list-style: none;
    
}
nav li a {
    display: block;
    width: 80%;
    color:#BC7908;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
}

nav li a:hover {
    background: #000;
    border-radius:10px;
}

@media (max-width: 768px) {
    .container {
      grid-template-areas:
        "header"
        "nav"
        "content"
        "footer";
      grid-template-columns: 1fr;
      grid-template-rows:
        1fr /* Header */
        1fr /* Nav */
        1fr /* Content */
        1fr; /* Footer */
    }
nav {margin:0;}
}