* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

nav {
    background-color: #dc3546;
}

nav > ul {
    display: inline-block;
    flex-direction: row;
    align-items: baseline;
    text-align: center;
}

nav > ul > li {
    list-style-type: none;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    margin: 40px;
}

a:hover {
    text-decoration: underline;
}

main > img {
    width: 100%;
    height: 100%;
}