* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    background-color: ghostwhite;
}

table,
th,
td {
    border: 2px solid white;
}

table {
    table-layout: fixed;
    width: 80%;
    background-color: black;
    color: white;
}

.img {
    width: 40%;
}

img {
    width: 100%;
}

.menu {
    width: 20%;
}

ul {
    margin: 10px 10px;
    list-style: none;
}

.footer {
    height: 200px;
}

footer {
    text-align: center;
    font-size: 20px;
}

a:visited,
a:link,
a:active {
    color: white;
    text-decoration: none;
}

h2 {
    margin-left: 10px;
    text-decoration: underline;
}