body{
    background-image: linear-gradient(darkcyan,yellow);
}
header {
    width: 100%;
    height: 200px;
    background-color: darkcyan;
    display: flex;
    margin-bottom: 10px;
}
#test{
    width: 120px;
    height: 150px;
    border-radius: 20px;
}
div{
    width : 100%;
    height: 200px;
    background-color: whitesmoke;
    border: solid black 1px;
    display: flex;
    box-shadow: 5px 5px;
    
}
.text-container{
    height: calc(90% - 20px);
    margin: 10px;
    padding: 5px;
    background-color: aliceblue;
}
.fit-image{
    height: 100%;
}
footer{
    height: 100px;
    background-color: rgb(102, 51, 153, 0.8);
    
}
.footer-list{
    height: 100%;
    list-style-type: square;
    display       : flex;
    flex-direction: column;
    flex-wrap     : wrap;
    justify-content: space-evenly;
}