html {
    min-height: 100%;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    background: radial-gradient(ellipse at bottom, #5091dd 0%, #030617 100%);
    background-color: #030617;
}

header {
    text-align: right;
    height: 90px;
}

header img {
    display: inline-block;
    width: 326px;
    height: 36px;
    padding: 27px;
}

footer{
  height: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  padding-top: 25px;
  background-image: linear-gradient(#fff, #95C0EA);
  box-sizing: border-box;
}

h1 {
    padding: 0;
    margin: 0 0 1rem;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #0172bd;
    color: #0172bd;
}

h2 {
    padding: 0;
    margin: 1.6rem 0 1rem;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #0172bd;
    color: #0172bd;
}


.container {
    max-width: 900px;
    margin: 35px auto 0;
    border: 1px solid #666;
    background-color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    position: relative;
}

.flag{
    display: block;
    width: 16px;
    height: 11px;
    color: transparent;
    position: absolute;
    bottom: 10px;
    right: 5px;
}

.flag.de{
    background-image: url(/img/flag-de.png);
}

.flag.en{
    background-image: url(/img/flag-en.png);
}


.divider{
  height:10px;
  background-image: url(https://rds.gfe.com/RDWeb/Pages/images/bar_03.jpg);
  background-position: center;
}

.content {
    margin: 0 auto;
    padding: 2rem;
    max-width: 700px;
}


.info{
    background: #f3f3f3;
    border-left: 3px solid #0078D7;
    padding: 16px;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.tiles {
    display: flex;
    margin: 0 -7px 20px;
}

.tile {
    display: inline-block;
    padding: 7px;
    line-height: 20px;
    color: #111;
    background: #fff;
    border: 1px solid #f0f0f0;
    margin: 0 7px;
    flex: 0 1 100%;
    min-height: 80px;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05);
}

.tile:hover {
    background-color: #e4e4e4;
}

.tile img {
    display: block;
    max-height: 60px;
    margin: 15px auto;
}

@media only screen and (max-width: 700px) {
    body {
        background: #030617;
        margin: 0;
        padding: 0;
    }

    .container{
      margin-top: 0;
    }

    .tiles {
        flex-direction: column;
    }

    .tile {
        margin-bottom: 2rem;
    }

    .hidden-xs{
        display: none;
    }
}