* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    background: #daa5c5;
    background: #000;
}

p {
    line-height: 1.6;
    font-size: 1.2rem;
    color: #fff;
    font-family: "Courier Prime", monospace;
}

.pink {
    color: #c5266a;

}

a {
    text-decoration: none;
    color: grey;
    transition: all .3s ease-in;
}

a:hover {
    
}

.container {
    margin: 50px auto;
    max-width: 960px;
    background: #000;
}

.hero_img {
    width: 100%;
    height: auto;
    position: relative;
    top: -20px;
    rotate: 6deg;
}

.header {
    padding: 2.5rem 3rem;
}

.hinweis {
    font-style: italic;
}

/*HEADLINES*/

.headline {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.2rem;
    color: #c5266a;
    font-family: "Courier Prime", monospace;
    text-shadow: 0 10px 7px #fff,
    0 10px 10px #fff,
    0 10px 21px #fff,
    0 10px 42px #ff0092,
    0 10px 82px #ff0092,
    0 10px 92px #ff0092;

}

.sub-headline {
    font-size: 1.4rem;
    color: #c5266a;
    font-family: "Courier Prime", monospace;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

h1 {
    border-bottom: 2px solid var(--grey-400);
}

.content section {
    padding: 1.5rem 3rem;
}

.content p {
    text-align: center;
}

main.content {
    border: 1px solid white;
}


/*ACCORDION*/

/* Core styles/functionality */

.tab {
    position: relative;
}

.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
}

.tab input:checked ~ .tab__content {
    max-height: 400px;
}

/* Visual styles */

.accordion {
    color: var(--theme);
    border: 2px solid;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: -100px;
}

.tab__label,
.tab__close {
    display: flex;
    color: white;
    background: var(--theme);
    cursor: pointer;
    border: 1px solid white;
    font-family: "Courier Prime", monospace;
}

.tab__label {
    justify-content: space-between;
    padding: 1rem;
}

.tab__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    transition: all 0.35s;
}

.tab input:checked + .tab__label::after {
    transform: rotate(270deg);
}

.tab__content ul li {
    margin: 0;
    padding: 1rem;
    color: #fff;
    font-family: "Courier Prime", monospace;
    list-style-type: none;
    cursor: pointer;
}



.tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.accordion--radio {
    --theme: var(--secondary);
}

/*FOOTER*/

.footer {
    padding: 15px 30px;
    background: #000;
    text-align: center;
    border: 1px solid white;
    margin: 20px 0px;
}

.footer-linktree {
    list-style-type: none;
    padding: 0px;
}

.footer-linktree li {
    color: #fff;
    display: inline;
    padding: 5px 15px;
    font-size: 20px;
    border: 1px solid;
    margin: 0 10px;
}

.footer-linktree li a {
    color: #fff;
    font-family: 'Courier Prime';
}

.footer__text {
    text-align: center;
    color: #c5266a;
    font-size: .9rem;
}

.copyright {
    text-align: center;
    color: #fff;
    font-style: italic;
    padding: 30px 0px;
}

/*font styles*/

.courier-prime-regular {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

.courier-prime-bold {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: normal;
}

.courier-prime-regular-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: italic;
}

.courier-prime-bold-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: italic;
}

/*keyframes styles*/

.blinker {
    animation: blink 3s linear;
}

@keyframes blink {
    5% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    15% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
}




/*button  styles*/

.cta-button-reader {
    position: relative;
    top: -150px;
    background: #c5266a;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    text-align: center;
    -webkit-box-shadow: -3px 17px 31px -10px #FFFFFF;
    box-shadow: 16px 14px 121px 40px #ffffff;
    transition: .3s ease-in-out;
}


.cta-button-reader span {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Courier Prime';
    font-weight: bolder;
    font-size: 20px;
    position: absolute;
    top: 25px;
    left: 15px;
    padding: 0px;
    margin-top: 0px;
}




.cta-button-reader:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* hover links styles*/

/* Sweep To Left */

.hvr-sweep-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #c5266a;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-left:hover,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:active {
    color: white;
}

.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/*Lightbox styles*/

.row > .column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Create four equal columns that floats next to eachother */

.column {
    float: left;
    width: 25%;
}

/* The Modal (background) */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */

.modal-content {
    position: relative;
    background-color: #000;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */

.mySlides {
    display: none;
}

/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* styles*/

@media only screen and (min-width: 480px) {
    p {
        font-size: 1.5rem;
    }
    .headline {
        font-size: 5rem;

    }
    .cta-button-reader {
        position: relative;
        top: -350px;
        background: #c5266a;
        width: 150px;
        height: 150px;
        border-radius: 100px;
        text-align: center;
        -webkit-box-shadow: -3px 17px 31px -10px #FFFFFF;
        box-shadow: 16px 14px 121px 40px #ffffff;
        transition: .5s ease-in-out;
    }

    .cta-button-reader span {
        color: #fff;
        text-transform: uppercase;
        font-family: 'Courier Prime';
        font-weight: bolder;
        font-size: 40px;
        position: absolute;
        top: 55px;
        left: 25px;
        padding: 0px;
        margin-top: 0px;
    }
    .hero_img {
        padding: 0px 30px;
        left: -60px;
        top: -20px;

    }
}
