@charset "utf-8";
html, body {
    width: 100%;
    height: 100%;
}
* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
}
article {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}
.header {
    height: 60px;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.3);
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.logo {
    background: transparent url("logo.svg") no-repeat left center;
    background-size: cover;
    display: inline-block;
    width: 200px;
    height: 60px;
}
main {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: 100px auto 50px 1fr;
}
.lang-de, .lang-en {
    grid-column: 2 / 5;
}
.lang-de {
    grid-row: 2;
}
.lang-en {
    grid-row: 4;
}
h1 {
    background-image: linear-gradient(to right top, #00574f, #006b54, #278d4d, #3aaa35, #45b384, #3cb5a1, #52b7c3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
}
.flag-de, .flag-en {
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-right: 15px;
    margin-left: 5px;
    border-radius: 20px;
    position: relative;
    top: 2px;
}
.flag-de {
    background: transparent url("flag_de.svg") no-repeat center center;
    background-size: 60px;
}
.flag-en {
    background: transparent url("flag_en_US.svg") no-repeat center center;
    background-size: 60px;
}
hr {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #00574f, #006b54, #278d4d, #3aaa35, #45b384, #3cb5a1, #52b7c3, #f0f0f0);
    background-image: -moz-linear-gradient(left, #00574f, #006b54, #278d4d, #3aaa35, #45b384, #3cb5a1, #52b7c3, #f0f0f0);
    background-image: -ms-linear-gradient(left, #00574f, #006b54, #278d4d, #3aaa35, #45b384, #3cb5a1, #52b7c3, #f0f0f0);
    background-image: -o-linear-gradient(left, #00574f, #006b54, #278d4d, #3aaa35, #45b384, #3cb5a1, #52b7c3, #f0f0f0);
    margin: 6px 0 20px 0;
}
.message {
    font-size: 1.2rem;
    line-height: 1.75;
}
.message p {
    color: #666;
    font-weight: 500;
    font-style: italic;
    margin-top: 10px;
}
footer {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: 50px;
    background-color: #f5f5f5;
}
.footer-content {
    color: #222;
    grid-column: 2 / 5;
    text-align: center;
    width: 100%;
    font-size: .75rem;
    line-height: 3rem;
}
.footer-content a:link, .footer-content a:visited, .message a:link, .message a:visited {
    color: #42b253;
    text-decoration-line: none;
    transition: all 150ms ease-in-out;
}
.footer-content a:hover, .message a:hover {
    color: #278d4d;
    text-decoration-line: underline;
}
.footer-content a:active, .message a:active {
    position: relative;
    top: 1px;
}
.message a:link {
    font-weight: 500;
}

@media (max-width: 768px) {
main {
    display: grid;
    grid-template-columns: 30px 1fr 1fr 1fr 30px;
    grid-template-rows: 20px auto 50px 1fr;
}
h1 {
    font-size: 2rem;
    font-weight: 500;
}
.flag-de, .flag-en {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    margin-left: 5px;
    border-radius: 15px;
    top: 1px;
}
.flag-de {
    background: transparent url("flag_de.svg") no-repeat center center;
    background-size: 40px;
}
.flag-en {
    background: transparent url("flag_en_GB.svg") no-repeat center center;
    background-size: 40px;
}
footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px;
    background-color: #f5f5f5;
    margin-top: 20px;
}
.footer-content {
    color: #222;
    grid-column: 1;
    text-align: center;
    width: 100%;
    font-size: .75rem;
}
small {
    display: block;
    padding-left: 36px;
    font-size: 1.25rem;
}
    
.message {
    font-size: 1rem;
    line-height: 1.25;
}
}
