* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(205, 226, 242);
}

header {
    background-color: rgb(37, 148, 232);
    padding: 1%;
    font-size: 2em;
}

.headerElements a {
    text-decoration: none;
    color: white;
    font-family:   'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.headerElements {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.headerElements a:hover{
    text-decoration: underline;
    color: rgb(205, 226, 242);
}