#wrapper {
    display: grid;
    grid-template-columns: 0.2fr 2.3fr 0.2fr; 
    grid-template-rows: minmax(0px,0.65fr) 2fr 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 / 5;
    grid-column: 2 / 3;
    margin: 0px;
}

#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(0,0,0);
}

#featured {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    background-color: black;
    float: left;
}

#featured2 {
    grid-row: 4 / 5;
    grid-column: 2 / 3;
    background-color: black;
}

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

#featured2 p {
    color: white;
    line-height: 28px;
    text-indent: 50px;
    margin-block-end: 0px;
}


#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: 5 / 6;
    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: auto;
}

#video {
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    width: 100%;
}

iframe {
    width: 100%;
    height: 650px;
}

#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;
}

@media screen and (max-width: 992px) {
    #kam2{
        display: none;
    }

    #featured2 p {
        margin-left: 10px;
        padding-bottom: 10px;
    }

    #logo{
        display: none;
    }

    header{
        padding-top: 30px;
    }

    #kam {
        margin-bottom: 10px;
    }

    #video {
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
        width: 100%;
    }
    

    iframe {
        width: 100%;
        height: 455px;
    }
    
  }


  @media screen and (max-width: 768px) {

    #video {
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
        width: 100%;
    }
    

    iframe {
        width: 100%;
        height: 355px;
    }
  }