.header{
    background: blue;
    height: 80px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 150%;

}
.container{
    display: flex;
    height: 300px;
}
.aside1{
    width: 35%;
    height: 100%;
    background-color: rgb(0, 127, 255);
}
.article1{
    width: 65%;
    height: 100%;
    background-color: rgb(0, 191, 255);
}
.item{
    list-style-type: none;
    text-align: center;
    width: 180px;
    border: 1px solid black;
    border-radius: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.item:hover{
    background-color: blue;
}
.foot{
    height: 75px;
    width: 100%;
    background-color: rgb(0, 30, 255);
    font-size: 150%;
    text-align: center;
    color: white;
}
h5{padding: 0; margin: 0;}

p{
    text-align: center;
    font-weight: bold;
}
