img {
    height:350px;
    width: 350px;
    object-fit: cover;
}

@media screen and (max-width: 600px) {
  img {
    height:100px;
    width: 100px;
    object-fit: cover;
  }
}

ul.menu {
    list-style-type: none;
    display: block;
    overflow: hidden;

}

li.menu {
    background-color: lightgrey;
    float: left;

    padding: 10;
}

div {
    display: block;
}

li.menu:hover {
    background-color: lightpink;
}

p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    width: 50%;
    margin-right: auto;
}

span {
    font-weight: bold;
}

a {
    color: blue;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

table, th, td {
    border: 1px solid black;
}