.container {
    background-color: aquamarine;
}
article {
    background-color: coral;
    border: solid 1px red;
    margin-bottom: 40px;
}
.hopla {
    background-color: darkorange;
}
.image_hab {
    float: left;
}
a:link { color: forestgreen;
}
a:visited {color: darkslategray;
}
a:hover {color: cornflowerblue;
}
a:active {color: deeppink;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

nav li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #000;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #000;
}