body {
    height: 100vh; 

    margin: 0%;
    padding: 0%;
    

    display: grid; 
    grid-template-columns: 
        1fr
        repeat(4,minmax(0,272px))
        1fr 
    ;
    grid-gap: 0px; 
    grid-template-rows:
        40px
        1fr
        1fr
        1fr
        50px
    ;
    grid-template-areas: 
        "top_header top_header top_header top_header top_header top_header"
        "header header header header header header"
        "Body Body Body Body Body Body"
        "footer footer footer footer footer footer"
        "credit credit credit credit credit credit"
        ;
}

.main_section {
    grid-area: Body;
    margin: 0 40px;
}

h1, h2 {
    color: #1BABE3;
    margin-top: 60px;
}
h2 {
    text-align: center;
}

p {
    font-size: large;
}

#blue {
    color: blue;
}