* {
    box-sizing; border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Roboto';
    font-size: 20px;
    color: #ffffff;
    background-image: url(
    background
    );
}

.grid-container {
    display: grid;
    grid-template-areas:
        'header header'
        'nav content'
        'footer footer';
    grid-template-columns: 15% 85% auto auto auto auto;
}

header, .nav, .content, footer {
    padding: 30px;
    margin: 5px;
}

header {
    text-align: center;
    grid-area: header;
    background-color: #bdbffa;
    border-left: 10px solid #bdc7fa;
    border-bottom: 10px solid #bdb6fa;
}

.nav, .content {
    height: 700px;
}

.nav {
    grid-area: nav;
    background-color: #b8d2fa;
    border-left: 10px solid #b8d9fa;
    border-bottom: 10px solid #b8cbfa;
}

.content {
    grid-area: content;
    background-color: #c8d7f4;
    border-left: 10px solid #c8d2f4;
    border-bottom: 10px solid #bdc7fa;
}

footer {
    grid-area: footer;
    background-color: #c6e2ff;
    font-size: 15px;
    border-left: 10px solid #c8ddf4;
    border-bottom: 10px solid #c6ddff;
}

ul, li {
    margin-left: 5%;
    list-style: circle;
    font-size: 15px;
}

img {
    padding 0px;
    margin: 15px;
    max-width: 25%;
}

.product-names {
    margin-left: 150px;
    word-spacing: 275px;
}

.text {
    margin: auto;
    text-align: center;
    width: 50%;
}
