#wrapper {
    display: grid;
    grid-template-columns: 0.2fr 2.3fr 0.2fr; 
    grid-template-rows: minmax(0px,0.45fr) 2fr 2fr; 
    gap: 0px 0px; 
    margin: 0px;
    padding: 0px;
}

header {
    background-color: rgb(0, 0, 0);
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    color: red;
}

body {
    margin: 0px;
    padding: 0px;
}

nav {
    text-align: right;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

main {
    grid-row: 2 / 4;
    grid-column: 2 / 3;
}

#brock {
    background-image: url("brock.PNG");
    height: 250px;
    width: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    float: right;
}

#weekly {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    background-color: rgb(19, 209, 126);
}

#featured {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    background-color: rgb(0, 0, 0);
    float: left;
}

#featured p {
    color: white;
    margin: 10px;
    line-height: 28px;
    text-indent: 50px;
}

#logo{
    background-image: url("logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 85px;
    width: 260px;
}

#featured h1 {
    color: red;
    margin: 10px;
    float: left;
}

footer {
    grid-row: 4 / 5;
    grid-column: 2 / -2;
    background-image: url("concrete.jpg");
    height: 50px;
    font-size: 1.5rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20px;
}

.flex {
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    justify-content: space-evenly;
  }
  
.flex div {
    width: 100px;
    margin: 10px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
}

#background {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#concrete {
    background-image: url("concrete.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    height: 335px;
}

#video {
    margin-top: 10px;
    margin-left: 10px;
    float: left;
}

#words1 {
    color: white;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 28px;
    text-indent: 50px;
}

#kam {
    background-image: url("kam.JPEG");
    background-size: cover;
    background-repeat: no-repeat; 
    height: 300px;
    width: 400px;
    margin: 10px;
    float: left;
}

#kam2 {
    background-image: url("kam2.PNG");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    width: 400px;
    margin: 10px;
    float: right;
}

#weekly p {
    background-color: black;
    margin-top: 10px;
    margin: 10px;
}