* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial';
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url('Kressenstein.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: calc(100vh - 50px);
}

.link {
    text-align: center;
    background: white;
    width: 25%;
    min-width: 250px;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.link hr,
hr {
    margin: 20px;
    border: 2px solid gray;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

#impressumlink {
    text-decoration: none;
    background: black;
    font-weight: bold;
    padding: 15px;
    color: white;
    margin-bottom: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    border: 1px solid black
}

#impressumlink:hover{
    color: black;
    background: white;
}

.logo {
    width: 100%;
    max-width: 200px;
}

section p {
    line-height: 1.4;
}

#linkto {
    margin-top: 20px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

#linkto a {
    padding: 10px 15px;
    border-radius: 3px;
    display: block;
    text-decoration: none;
    font-weight: bold;
    color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

#linkto.modellcarservice {
    background: #056091;
    border: 1px solid#056091;
}

#linkto.modellautostuebla {
    background: #b45111;
    border: 1px solid #b45111;
}

#linkto.wikingmodelle {
    background: #601732;
    border: 1px solid #601732;
}

#linkto.modellautostuebla:hover,
#linkto.modellcarservice:hover,
#linkto.wikingmodelle:hover {
    color: #b45111;
    background: white;
}

#linkto.modellcarservice:hover a {
    color: #056091;
}

#linkto.modellautostuebla:hover a {
    color: #b45111;
}

#linkto.wikingmodelle:hover a {
    color: #601732;
}

#impressum #content {
    background: white;
    display: block;
    height: auto;
    width: 70%;
    max-width: 1400px;
    margin: 10vh auto;
    padding: 5vh;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 10px;
    margin-top: 20px;
}

#impressum img {
    max-width: 250px;
    display: block;
    margin: 20px auto;
}

#impressum hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

p {
    margin-bottom: 10px;
}

#impressum a,
#impressum a:visited {
    color: darkblue;
}

@media only screen and (max-width: 810px) {
    #index #content {
        display: inline-block;
        padding: 5%;
    }

    #index #content,
    footer {
        height: auto;
    }

    #index section.link {
        width: 100%;
        min-width: unset;
        max-width: unset;
        margin-bottom: 5%;
        margin-top: 5%;
    }
  }