body {
    background-color: rgb(191, 219, 236);
}
#header {
    color:black;
    margin: auto;
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.assignments{
    display: flex;
    flex-wrap: wrap;

}
.assignment{
    background-color:gray;
    padding: 10px;
    margin: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 5px 8px black;
    width: 30%;

}
.assignmentimg{
    width: 200px;
    height: 200px;
    border: solid 3px black;
    border-radius: 5px;
    display: block;
    margin: auto;

}
.assignmentdetails{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    font-weight: 600;
    text-align: left;
}
a {
    text-decoration: none;
    color: white;
}
.assignment a:hover{
    color: black;
}