html, body, #main {
    height: 100%;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;;
    font-size: 11pt;
    color: #f5f8ff;
    background: radial-gradient(ellipse at center, rgb(233, 233, 239) 0%, rgb(234, 241, 255) 35%, #174291 100%) no-repeat;
}

.ocean-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ocean {
    width: 100%;
    min-height: 50vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #174291;
}

.wave {
    background: url(/static/wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 14s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 13s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0, -25px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}

.head {
    height: 250px;
    text-align: center;
    width: 100%;
    color: #f5f8ff;
    font-size: 14pt;
    margin-top: 30px;
}

.head h1 {
    font-size: 100pt;
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 500px) {
    .head h1 {
        font-size: 60pt;
    }
}

.head .subline {
    color: #174291;
    font-size: 22px;
}

.content {
    text-align: center;
    padding: 10px;
    margin-top: 80px;
}

.content h2 {
    margin-bottom: 25px;
    font-size: 26px;
    color: #f5f8ff;
    font-style: italic;
    font-weight: 500;
}

input {
    padding: 8px;
}

.button {
    background: #174291;
    border: 0;
    box-sizing: border-box;
    margin: 1em;
    padding: 1em 2em;

    box-shadow: inset 0 0 0 2px #ffffff;
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;

    position: relative;
    vertical-align: middle;
}

.button::before,
.button::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.button.center:hover {
    color: rgba(255, 255, 255, 0.5);
}

.button.center::before,
.button.center::after {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
}

.button.center::before {
    border-top: 2px solid #899acb;
    border-bottom: 2px solid #899acb;
    transform: scale3d(0, 1, 1);
}

.button.center::after {
    border-left: 2px solid #899acb;
    border-right: 2px solid #899acb;
    transform: scale3d(1, 0, 1);
}

.button.center:hover::before,
.button.center:hover::after {
    transform: scale3d(1, 1, 1);
    transition: transform 0.5s;
}


.footer {
    position: absolute;
    bottom: 0;
    padding-top: 4px;
    font-size: 8pt;
    color: rgba(255, 255, 255, 0.5);
    height: 20px;
    width: 100%;
    text-align: center;
    border-top: 3px double rgba(255, 255, 255, 0.5);
}

a {
    color: #d8f1f9;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
}

a:hover {
    color: #000
}

.nav-items {
    float: left;
}

.current-user {
    float: right;
}
