* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Candara', 'Noto', sans-serif;
}

body{
    background-color: rgb(221, 51, 51);
    color: white;
}


.nav {
    display: block;
    width: auto;
    height: 60px;
    background:black;
}

.nav ul{
    }

.nav li {
    display: inline;
    float: left;
    font-size: 25px;
    margin: 10px;
    color: white;
}

.nav li a {
    display: block;
    color: white;
    text-decoration: none;
}

.nav li a:hover {
    color: black;
    text-decoration: underline;
}

section.wrapper {
    width: 50%;
    position: relative;
    margin: 20px auto;
    padding: 20px;
}

img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    border-width: 5px;
    border-style: solid;
    border-color: white;
}

.wrapper a {
    color: blue;
    text-decoration: none;
}

.wrapper a:hover {
    color: green;
    text-decoration: underline;
}

h1 {
    text-align: center;
}

.aside {
    float: right;
    position: relative;
    margin: auto;
}