/* 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: #d2d2d2 linear-gradient(180deg, white 0%, #d2d2d2 100%);
    background-attachment: fixed;

    overflow-y: visible;

    display: flex;
    flex-direction: column;
    border: none;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #F4D606;
    padding: 2em;   

    border-bottom: 4px solid #F4D606;
}

header img {
    flex-shrink: 0;
    width: 240px;
    height: 80px;
}

header h1 {
    margin: 0;
    margin-left: 16px;
    font-size: 24pt;
}

div.app-container {
    padding: 32px;
    flex: 1 0 auto;
}


footer {
    display: flex;
    flex-direction: row;
    align-items: left;
    background-color: #353533;
    justify-content: left;
    padding: 2em;
}

#footer-ocean {
    width: 100%;
    height: 100px;
    background-image: url('footer-ocean.svg');
    background-position: center;
    background-repeat: no-repeat;
}

#footer-content {
    width: 100%;
    background-color: #363636;
    padding: 12px;
    color: #363636;
    font-weight: 500;
    text-align: left;
}