nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.grid-container {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
  }
nav a {
    text-decoration: none;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 25px;
    padding: 2%;
    padding-left: 3%;
    transition: .2s;
}
nav a:hover{
    background-color: rgb(255, 253, 250);
    color: black;
    transform: rotate(14.99deg);
}
nav h1{
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 40px;
}
.flex-container{
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
#mainlogo{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
footer{
    background-color: black;
    display: block;
    height: 100px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 23px;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
p {
    font-size: 25px;
    font-family: Arial, sans-serif;
    margin: 40px;
}
.LT {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:30%;
}
#black {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
#long {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
#blackl {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
table {
    margin: auto;
    border: 1px solid #424242;
    width: 100%;
    border-collapse: collapse;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
}
td {
    padding: 5px;
    border: 1px solid #424242;
    text-align: center;
}
@media only screen and (max-width: 992px) {
    nav a {
        font-size: 23px;
    } 
#wrapper{
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
    display: grid;
    grid-auto-rows: minmax(0,auto);
    font-size: 25px;
    }
#top {
    background-color: white;
    grid-row: 1/2;
    grid-column: 1/-1;
    }
#shop {
    background-color: white;
    grid-row: 2/3;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    }
#bottom {
    background-color: white;
    grid-row: 3/4;
    grid-column: 2/-2;
    }
img {
    width: 100%;
    height: auto;
      }
p {
    font-size: 20px;
    margin: 50px;
}
.LT {
    width: 25%;
}
}
@media only screen and (max-width: 768px) {
    nav a {
        font-size: 20px;
    }
    #wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
        display: grid;
        grid-auto-rows: minmax(0,auto);
        }
    #top {
        background-color: white;
        grid-row: 1/2;
        grid-column: 1/-1;
        }
    #shop {
        background-color: white;
        grid-row: 2/3;
        grid-column: 1/-1;
        display: flex;
        justify-content: center;
        flex-direction: column;
        }
    #bottom {
        background-color: white;
        align-items: center;
        grid-row: 3/4;
        grid-column: 2/-2;
        position: relative;
        }
    img {
        width: 100%;
        height: auto;
          }
    p {
        font-size: 20px;
        margin: 40px;
    }
}
