* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    background-color: #001833;
    height: 100vh;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

a {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.main {
    width: 100%;
}

mark {
    background-color: #0c325e;
    color: white;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.container {
    background-color: #0c325e;
    height: 100px;
}

li > .active {
    background-color: #184475;
}

.container ul li a {
    color: #f5faff;
    font-size: 1.3em;
    text-transform: uppercase;
    -webkit-user-select: none;
}
.container ul {
    margin: 0 5%;
}

.container ul li {
    display: inline-block;
    margin: 0 10px;
}

.container h1 {
    margin: 0 5%;
    color: #f5faff;
    -webkit-user-select: none;
}

.container ul li a:hover, a:active{
    background-color: #001833;
}

.main-container {
    margin-top: 80px;
    margin-bottom: 100px;
}

.main img {
    filter: opacity(0.5);
    align-self: auto;
    margin-right: 10%;
    border-radius: 10px;
    -webkit-user-select: none;
}

.hero-text {
    color: white;
    margin-left: 10%;
    max-width: 40%;
}

.hero-text a {
    -webkit-user-select: none;
    display: inline-block;
    margin: 20px 0;
    font-size: 1.4em;
    color: #f5faff;
    background-color: #0c325e;
    padding: 7px 15px;
    text-align: center;
}

.hero-text a:active, a:hover{
    color: #001833;
    background-color: #f5faff;
}

.hero-text p {
    font-size: 1.4em;
    margin-top: 20px;
    word-wrap: break-word;
}

.main-container h1{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3em;
    color: #f5faff;
}