.fullscreen {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.article {
    background: rgba(255, 255, 255, 0.5);
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

h1 {
    font-size: 4rem;
    padding: 1rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 1);
}

p {
    font-size: 2rem;
    line-height: 2.5rem;
    padding: .75rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

a:link,
a:visited {
    color: #DF0174;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
a:active {
    color: #DF0174;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:after {
    position: relative;
    display: block;
    content: "";
    height: 2px;
    width: 0;
    transition: width 0.5s ease;
    background-color: #DF0174;
}

a:hover:after,
a:focus:after {
    width: 100%;
}



@media (max-width: 1259px) {
    .fullscreen {
        background-image: url("../_img/wippe_800.jpg");
    }
}

@media (min-width:1260px) {
    .fullscreen {
        background-image: url("../_img/wippe_1600.jpg");
    }
}