/* Hier kann CSS-Quelltext eingefügt werden, der im <head> nach allen anderen Styles steht. */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    background: #e7e7e7 linear-gradient(180deg, white 0%, #e7e7e7 100%);
    background-attachment: fixed;

    overflow-y: visible;

    display: flex;
    flex-direction: column;
    border: none;

    font-family: Arial, 'PT Sans', sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: left-side;

    background-color: #fff;
    padding: 2em;   

    /*border-bottom: 4px solid #0069B4;*/
	border-bottom: 4px solid #164C7B;
}

header img {
    flex-shrink: 0;
    width: 105px;
    height: 109px;
}

header h1 {
    margin: 0;
    margin-left: 16px;
    font-size: 24px;
	font-family: Arial;
}

div.app-container {
    padding: 32px;
    flex: 1 0 auto;
}

.maintenance {
    background: #fdd;
    border: 1px solid #600;
    color: #600;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    max-width: 600px;
    margin: auto;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
}

#footer-ocean {
    width: 100%;
    height: 60px;
    background-image: url('footer-LRAABG.png');
    background-position: center;
    background-repeat: no-repeat;
}

#footer-content {
    width: 100%;
    background-color: #164C7B;
    padding: 24px;
    color: #eef;
    font-weight: 500;
    text-align: center;
}

footer a {
		color: #eef;
		text-decoration: underline;
		cursor: auto;
	}
