* {
    margin: 0;
    padding: 2px;
    box-sizing: border-box;
    border-radius: 10px;
}

#container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border: 2px solid black;
    width: 80%;
    margin: auto;
    padding: 2px;
}

p {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: larger;
}

header {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.bannerlogo {
    max-width: 50px;
    justify-content: center;
    align-self: center;
}

h1 {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-size-adjust: 15px;
}

h2 {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

header {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* -----------------NAVIGATION----------------- */

nav {
    background-color: black;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    display: flex;
    color: white;
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px;
    text-decoration: none;
}

nav ul li a:hover {
  background-color: gray;
}

/* -----------------END NAVIGATION----------------- */