body{
    font-family:verdana ;
    margin: 0;
    width: 960px;
    padding: 0;
}

*/*{border: red solid 1px;}*/

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 80px;
    
}
.item{
    text-align: center;
    border: white 1px dashed;
    color: white;
}

.header{
    background-color:rgb(123,140,147);
}

a{
    color: white;
    text-decoration: none;
}

.navbar{
    height: 30px;
    text-align: center;
    background-color: rgb(40,40,40) ;
}

.content_section{
    height: 70vh;
    background-color:rgb(72,122,132) ;
}

.content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 30vh;
    gap: 4vmin;
    padding: 40px;
}

.item-4{
   padding: 20px;
   border: white 1px solid;
}

.item-5{
    padding: 20px;
}
 
.footer{
    height: 30px;
    background-color:rgb(40,40,40) ;
    text-align: center;
    color: white;
    position: absolute;
    width: 960px;
}

.footer_txt{
    line-height: 0;
}