body {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.5em;
}

#site_wrap {
    background-color: rgb(28, 28, 28);
    min-height: 100vh;
    display: grid;
    grid-template-columns:
        1fr repeat(4, minmax(0, 300px)) 1fr;
    grid: 0 gap 0;
    grid-template-rows:
        150px 50px 471px 390px 300px 30px;
    grid-template-areas:
        ". header header header header"
        ". featured_header featured_header featured_header featured_header"
        ". featured_main featured_main infobox infobox"
        ". content content content content"
        
}

.header {
    background-color: rgb(28, 28, 28);
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.header .logo {
    width: 200px;
}

.header .nav {
    list-style: none;
    align-items: center;
    padding: 20px;
    display: flex;
}

.header .nav a {
    text-decoration: none;
    border: 2px solid;
    color: blue;
    padding: 44px 56px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: large;
}

.header .nav a:hover,
.header .nav .active {
    background-color: rgb(62, 255, 255);
    color: black;
    font-weight: bold;

}

.featured_header {
    grid-area: featured_header;

    h1 {
        color: aqua;
    }

    p1 {
        color: white
    }

}

.featured_main {
    grid-area: featured_main;
    margin: 5px 5px 5px 5px;
    grid-gap: 10px ;
}


.infobox {
    text-align: center;
    background-color: rgb(77, 80, 245);
    font-size: large;
    grid-area: infobox;

    h1 {
        color: aqua;
    }

    p {
        font-size: 25px;
    }
}

.content {
    padding: 20px;
    grid-area: content;
    display: flex;
}

.content img {
    margin: 0px 20px 0px 20px;
}


@media screen and (max-width:480px) {
    #site_wrap {
        grid-template-rows:
            min-content 98px 471px 390px 60px;

        grid-template-areas:
            ". header header header header"
            ". featured_header featured_header featured_header featured_header"
            ". featured_main featured_main featured_main featured_main"
            ". content content content content"
    }

    .infobox {
        display: none;
    }

    .header .nav {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .header .nav a {
        margin: .5em;
    }

    .content {
        flex-direction: column;
    }

    .featured_main {
        flex-direction: column;
    }
}

/* About Page Styles*/

.portfolio {
    background-color: rgb(28, 28, 28);
    }



.infobox_a {
    background-color: rgb(28, 28, 28);

}

.featured_main_a {
    
    img {
        min-width: 252px;
        min-height: 377px
    }
    }
    
.featured_main_a img {
    margin: 50px 50px 50px 50px;
    padding: 10px 10px 100px 10px ;
}




.featured_header {
    h2 {
        color: pink
    }
    padding: 20px 20px 20px 20px ;

}

.infobox_c {
    background-color: rgb(28, 28, 28);

}




.about .infobox_b {
    text-align: center;
    background-color: rgb(13, 16, 207);
    font-size: large;
    grid-area: infobox;
    
    h1 {
        color: aqua;
    }

    p {
        font-size: 25px;
    }
}



.about .content{
    padding: 100px 200px 0px 100px;
    grid-area:content;
    display: flex;
    align-items: center ;
    vertical-align: middle;
    justify-content: space-between;

    h1{
        color: pink ;
        vertical-align: top;
        font-size: 15px;
    }
    
    h2{
        color:rgb(44, 143, 255);
        text-align: center;
    }

    ul{
         text-align: left;
    }

    p{
        font-size: 25px;
        text-align: left;
        vertical-align:baseline ;
        color: blue
    }
    .content_a{
     a{
        color:hotpink;
        text-align: right;
        font-weight: bold;
     }
    
    }
     
}

.infobox_contact{
     text-align: center;
    
    font-size: large;
    grid-area: infobox;

    h1 {color: aqua;
    }
    h2{color:aqua }

    a{
        color:hotpink;
        text-align: right;
        font-weight: bold;
    }
    ul{
        list-style-type: none;
        font-size: large;
        color: #ffe5e5;
    }
    
}

.comics .featured_header{
    h1{color: rgb(29, 145, 212);
    font-size: large;
    }
}

.comics .infobox{
    display:none ;
}