@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular-webfont.eot');
    src: url('Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('Roboto-Regular-webfont.woff') format('woff'),
        url('Roboto-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.card {
    max-width: 40rem;
    margin: auto;
    background-color: #fff;
}

.header {
    line-height: 0;
}

.header__image{
    width: 100%;
    height: auto;
}

.presentationText {
   background-color: #DF0C0C; 
   color: #fff;
   padding-top : 1.5rem;
   padding-bottom : 1.5rem;
}

.presentationText__principal {
    padding-left: min(5vw, 5rem);
    padding-right: min(5vw, 5rem);
    margin: auto;
    line-height: 1.2;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.presentationText__subline {
    padding-left: min(5vw, 5rem);
    padding-right: min(5vw, 5rem);
    margin: auto;
    line-height: 1.5;
    color: #fdf0f0
}

.linkList {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.linkList__item {
    border-bottom: solid 1px #ccc;
}

.linkItem {
    margin: auto;
    padding-left: min(5vw, 5rem);
    padding-right: min(5vw, 5rem);
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    color: inherit;
    text-decoration: none;
}

.linkItem:hover, .linkItem:focus{
    background-color: rgba(237,12,12,0.1);
}

.linkItem:hover .linkItem__title, .linkItem:focus .linkItem__title{
    text-decoration: underline;
}

.linkItem__icon {
    background-color : #fff;
    border: solid 1px #ccc;
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    margin-right: 1rem;
    align-self: center;
}

.linkItem__icon--facebook {
    background-color : transparent;
    border: none;
    padding: 0;
}

.linkItem__icon--instagram {
    background-color : transparent;
    border: none;
    padding: 0;
}

.linkItem__icon--atipiik-shop {
    background-color : #F20F0F;
    border: none;
    padding: 0;
}

.linkItem__content {
    display: flex;
    flex-direction: column;
    margin:0;
    line-height: 1.4;
    justify-content: center;
}

.linkItem__url {
    color: #707070;
}

@media (min-width: 40em) {
    .hero {
        background: url("../images/banniere.png");
        background-repeat: no-repeat !important;
        background-size: 100% !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        height: 70vh;
        height: max(70vh, 700px);
        filter: blur(20px);
    }

    .card {
        margin-top: 4rem;
        margin-bottom: 4rem;
        box-shadow: 0 4px 8px 1px rgba(0,0,0, 0.25),0 1px 8px 1px rgba(0,0,0, 0.15);
    }
}

.visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}