@import '/files/vsm-pferd/assets/BeausiteClassic/stylesheet.css';
* {
    box-sizing: border-box;
    border: 0;
    margin: 0;
}

html {
    overflow-y: scroll;
    min-height: 100%;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Beausite Classic', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
        'Helvetica Neue', Arial, sans-serif;
    --color-vsm: #ce1926;
    --color-pferd: #0060ae;
    --color-hover: #3c3c3c;
}

body {
    height: 100vh;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background: url(/build/images/background_triangles_white.c8b93eca.svg) 100% 0/100% auto no-repeat;
}

#wrapper,
#container,
#main,
#main > .inside {
    height: 100%;
}

.mod_article {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mod_article > .inside {
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.container {
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
}
.container_logos {
    justify-content: center;
    margin-bottom: 4rem;
}
.container_logos img {
    width: 100%;
    height: auto;
}
.container_buttons {
    justify-content: center;
}
@media (min-width: 510.97px) {
    .container_buttons .content-hyperlink + .content-hyperlink {
        margin-left: 1.5rem;
    }
}
@media (max-width: 510px) {
    .container_buttons {
        flex-direction: column;
    }
    .container_buttons > *:last-child {
        margin-top: 1rem;
    }
}

.content-hyperlink a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    color: white;
    border: none;
    border-radius: 0;
    margin: auto;
    padding: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: normal;
    text-transform: unset;
    transition: 0.3s;
    text-decoration: none;
    width: 200px;
}

.content-text {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 4rem;
}
.content-text p {
    font-size: 1.2em;
    line-height: 1.4em;
    font-weight: 500;
}

.content-hyperlink.pferd a {
    background-color: var(--color-pferd);
}
.content-hyperlink.vsm a {
    background-color: var(--color-vsm);
}
.content-hyperlink a.active,
.content-hyperlink a:hover {
    background-color: var(--color-hover);
}

