html {
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #000000;
    color: white
}

.wrapper {
    display: grid;
    grid-template-columns: 15% 50% 30% 5%;
    grid-template-areas: 
        "nv nv nv nv"
        ".  hd hd hd"
        ".  mn pb ."
        "ft ft ft ft";
}

.nav {
    grid-area: nv;
    background: #464646;
    height: 50px;
    margin-bottom: 20px
}

.nav a {
    color: white;
    margin-left: 40px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-family: 'Spectral', serif;
}

.nav a:hover {
    background: #000000;
}

.header {
    font-family: 'Belleza', sans-serif;
    grid-area: hd;
    background: #000000;
    margin-bottom: 20px;
}

.content {
    grid-area: mn;
}

.right {
    grid-area: pb;
    margin-left: 20px;
}

.add {
    font-family: 'Arapey', serif;
    background: #464646;
    padding: 20px;
    margin-bottom: 20px;
    width: 80%;
    border-radius: 9px
}

.footer {
    grid-area: ft;
    background: #464646;
    color: white;
    padding-left: 40px;
    padding-top: 20px;
    height: 100px;
    font-family: 'Arapey', serif;
}

.button {
    display: inline-block;
    background: #000000;
    color: white;
    text-decoration: none;
    padding: 5px;
}

.button:hover {
    background-color: bisque;
}

.page-full.wrapper {
    display: block;
    width: 97%;
    margin: 0 auto;
}

.page-full.content {
    width: 100%;
}

.page-full.add {
    background: white;
    padding: 40px;
    margin: 20px auto;
    width: 95%;
}

.page-grid .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.page-grid .add {
    width: 100%;
    margin-bottom: 10;
}
.right {
    flex: 1;
    padding-left: 70px;
}

.header img {
    border-radius: 10px;
}

