* {
    margin: 0;
    padding: 0;
    border : 0;
    font-family: 'Roboto Mono', monospace;
}

html {
    height: 100%;
    width: 100%;
    background: url('../img/troisrivieres.png') no-repeat center center fixed;
    background-size: cover;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
}

#nav {
    margin-top: 5rem;
}

#container {
    height: 100%;
    width: 100%;
    padding: 200px;
    display: flex;
    align-self: flex-end;
    justify-content: space-between;
}

.link {
    display: flex;
    margin-top: auto;
    border: 3px solid lightyellow;
    font-size: 32px;
    color: lightyellow;
    padding-left: 10px;
    padding-right: 10px;
}

a:hover {
    background-color: lightyellow;
    color: #222222;
}