/* ALLGEMEIN */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    list-style: none;
    text-decoration: none;
}


/* HINTERGRUND */

html {
    background: rgba(100, 60, 180, 0.7);
    scroll-behavior: smooth;
}

/* WRAPPER */

.wrapper {
    margin: 0 auto;
    padding: 0;
}
.wrapper > * {
    margin: 0 auto;
}

/* Allgemein*/

p {
    line-height: 1.5;
}

main {
    margin: 0 auto;
}

/* Suchleiste */


#suche {
    margin: -20px 120px 0px 0px;
    float: right;
    width: 10em;
    border: none;
    border-bottom: 2px solid #999;
    font-size: 1.2em;
    transition: width 0.5s ease-in-out;
}

#suche:focus {
    font-size: 1.5em;
    width: 25%;
    box-shadow: inset 8px 3px 18px -4px rgba(0,0,0,0.4);
    outline: none;
}



/* NAVIGATION */

#navigation {
    text-align: center;
    width: 100%;
    height: 20px;
    padding: 15px;
    color: white;
    margin: 0;
    display: block;
    background-color: #714dba;
}

#menü {
    width: 100%;
    height: auto;
}

#menü a {
    padding: 50px;
    padding-top: 12px;
    color: white;
    font-weight: 600;
}

#menü a:hover {
    color: black;
    cursor: pointer;
    border-top: solid black 4px;
}


/* WILLKOMMENS-ANIMATION */

.post {
    max-width: 800px;
    height: 250px;
    position: relative;
    cursor: pointer;
    margin: 0 auto;

}

.post:hover .post-s {
    width: 800px;
}

.post img {
    display: block;
    width: 800px;
    height: 250px;
}

.post-s {
    width: 0px;
    height: 250px;
    background: rgba(100, 60, 180, 0.7);
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.7s ease;
}

.post-s h2 {
    color: white;
    font-size: 50px;
    border: 6px solid white;
    padding: 10px 30px;
}

/* Youtube, Twitchbeiträge (Section) */

section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: white;
    margin-top: 40px;
}

.section-heading {
    font-size: 32px;
    border-left: 3px solid white;
    border-right: 3px solid white;
    transition: all 0.4s;
    display: inline-block;
    padding: 4px 32px;
    color: white;
    margin-top: 30px;
}

.section-heading:hover {
    padding: 8px 48px;
    border-left: 3px solid black;
    border-right: 3px solid black;
    color: black;


}


/* Card */

.schrift {
    color: white;
    text-decoration: none;
}

.schrift:hover {
    color: black;
}

.card-image {
    transition: 0.4s;
}
.card-image a {
    display: block;
    min-height: 350px;
    background-repeat: no-repeat;
    background-position: center -9px;
    background-size: cover;
}

.card-image:hover {
    box-shadow: 0 10px 6px -3px #000;
}

.card .card-description {
    padding: 0 8px;
    
}

/* button read more*/

.btn-readmore {
    padding: 8px 24px;
    border: 3px solid white;
    transition: 0.4s;
    display: inline-block;
    margin-bottom: 24px;
    margin-left: 15px;
    font-weight: bold;
    cursor: pointer;
    background: #9276ca;
    color: white;
}

.btn-readmore:hover {
    background: #9276ca;
    text-decoration: none;
    padding: 8px 64px 8px 24px;
    border: 3px solid black;
    color: black;
}

/* Media Queries */

@media (min-width: 720px) {
    main {
        width: 95%;
    }

    .card {
        width: 45%;
    }

    .card .card-image img {
        width: 100%
    }
}

/* Socialmediea-Icons */

.fa-instagramm {
    background: #3B5998;
    color: white;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}


/*Footer*/

.footer {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 70px 0;
    box-sizing: border-box;
    background: #714dba;
}

.inner_footer {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #714dba;

}

.inner_footer .logo {
    width: 35%;
    float: left;
    height: 100%;
    display: block;

}

.inner_footer .logo img {
    width: 65px;
    height: auto;
    margin: 25px 150px;

}

.inner_footer .footer_third {
    width: calc(21.66666666667% - 20px);
    margin-left: 10px;
    float: left;
    height: 100%;

}

.inner_footer .footer_third:last-child{
    margin-right: 0;

}

.inner_footer .footer_third h1 {
    font-size: 22px;
    color: white;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.inner_footer .footer_third a {
    font-size: 18px;
    color: white;
    display: block;
    font-weight: 200;
    width: 100%;
    padding-bottom: 5px;

}

.footer_third a:hover {
    color: black;
}
