* {
    box-sizing:border-box;
}
#wrapper {
    display:grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6,minmax(0, 160px)) minmax(0px, 1fr);
}
#keyboardhero {
    width: 100%;
    height: 570px;
    image-resolution: 300dpi;
    background-image: url(images/keyboardhero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}
#logo {
    /*background-image: url(images/controller.png);*/
    display: flex;
    justify-content: center;
    align-content: center;
}
#lifehero {
    background-image: url(images/lifehero.jpg);
    width: 305px;
    height: 203px;
    float: right;
    grid-column: 6 / 7;
    grid-row: 5;
    flex-wrap: nowrap;
}
#neshero {
    background-image: url(images/neshero.jpg);
    width: 230px;
    height: 345px;
    float: left;
}
header {
    background-color: #CC0066;
    border-radius: 25px;
    grid-row: 2 / 3;
    grid-column: 1 / -1;
}
header h1 {
    text-decoration-style: solid;
    text-decoration: none;
    color: #33CC00;
    font-family: Georgia;
    padding-left: 50px;
}
nav {
    display: block;
    float: right;
    font-weight: bold;
    text-decoration: none;
    list-style-type: none;
    padding-right: 50px;
    padding-bottom: 50px;
    grid-row: 2 / 3;
    grid-column: 6 / 8;
}
ul {
    display: flex;
    padding: 0;
    margin: 0;
}
li {
    text-decoration-style: unset;
    display: inline-flex;
    text-align: right;
    font-size: 25px;
}
header nav a {
    color: #33CC00;
    padding: 8px;
    text-align: right;
}
main {
    background-color: #D3D3D3;
    display: block;
    margin-left: 105px;
    margin-right: 105px;
    grid-row: 3 / 4;
    grid-column: 1 / -1;
}
main h2 {
    color: #CC0066;
    text-align: center;
    font-family: Courier;
    }
i {
    opacity: 65%;
}
h3 {
    color:#CC0066;
    font-family: Georgia;
}
p {
    color:#000000;
    font-family: Verdana;
}
#section1 {
    display: block;
    margin-right: 305px;
    margin-left: 105px;
}
#section2 {
    display: block;
    margin-left: 230px;
    margin-right: 105px;
}
footer {
    background-color:#33CC00;
    border-radius: 50px;
    text-align: center;
    height: 50px;
    grid-row: 5 / 6;
    grid-column: 1 / -1;
}
footer div {
    padding-top: 15px;
    font-family: Georgia;
    font-size: 25px;
}