h1{
    font-family: "pain-de-mie", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25vw;
}

/*STYLESHEET bij mobiele site module 3*/
/* Schrijf hier jouw naam */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* font is 10px, lekker makkelijk rekenen */
 }
body{
    margin: 0; /*anders krijg je zo'n wit randje om je site*/
    font-size: 1.6rem;
    font-size: 200%;
    font-family: "new-spirit", serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: expanded;
    font-style: light;
    font-weight: 100;
    box-sizing: border-box;
    color: rgb(124, 0, 213);
    background-color: rgb(255, 218, 239);
    text-align: center;
    text-decoration: wavy;
    text-transform: none;
    text-indent:initial;
    letter-spacing: 0px;
    line-height: normal;
    word-spacing: normal;
}

header {
    background-color: hsl(303, 100%, 79%);
    padding: 50px; /*anders staat de tekst tegen de rand van het header blok*/
}

/* style met deze CSS code jouw logo */
img.logo {
    width: 902px;
    height: auto;
}

article {
    background-color: #ff80f9;
    padding: 0px; /*anders staat de tekst tegen de rand van het content blok*/
    padding-bottom: 58.6px;
}

img{
    max-width: 100%; /*hier staat dat een image nooit breder mag worden dan de breedte van het HTML element waar de <img> in zit */
}

.actie{
    border: 10px solid;

}
/*plaatje links uitlijnen*/
img.links {
    float: left;
    padding-right: 20px;
    padding-bottom: 20px;
}

/*plaatje rechts uitlijnen*/
img.rechts {
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
}

.activiteiten {
    text-align: left;
    padding-left: 15%;
}

p.streamer {
    color: hsl(284, 100%, 85%);
    float: right;
    width: 100%;
    font-size: 40px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    font-family: "modern-love-rough", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: rgb(84, 0, 94) 0px 4px 3px;
}

.call-to-action-button{
    border: 2px solid purple;
    background-color: beige;
    color: purple;
    line-height: 1;
    padding-left: 1vw;
    padding-right: 1vw;
    margin-bottom: 2%;
    border-radius: 0px;
    font-size: 10vw;
    border-radius: 12.9px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: inline-block;
 }
 /*Als je met je muis over de link gaat*/
 .call-to-action-button:hover{
    color: beige;
    background-color: purple;
    border-color: beige;
    box-shadow: 0px 0px 5px 5px purple; 
    transform: scale(1.2);
 }

 .call-to-action-button:before {
    content: '';
    background: linear-gradient(45deg, #8c00ff, #be4eff, #ac00b2, #78007c, #7300ff, #d900ff, #fe59f9, #ff00c8, #b151ff);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}


.call-to-action-button:active {
    color: #000
}

.call-to-action-button:active:after {
    background: transparent;
}

.call-to-action-button:hover:before {
    opacity: 1;
}

.call-to-action-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
 

 .knop{
    padding-right: 20%;
 }

 footer {
    display: block;
    background-color: black;
    color: white;
    position: relative;
    padding: 20px;
}

/*om float:left of right op te heffen de class stop-float toevoegen na de float aan een html element*/
.stop-float:after{
    display: table;
    content:'';
    clear: both;
}

/*voor schermen tot  940px breed: mobiel landscape  */
@media screen AND (max-width: 940px) AND (orientation: landscape) {

    header img.logo {
        width: 140px;
        float: left;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    header {
        background-color: rgb(255, 168, 212);
    }

    article {
        background-color: pink;
        padding-left: 100px;
    }

    .call-to-action-button {
        padding: 20px;
    
    }

}

article{
    padding: 15px;
    padding-bottom: 58.6px;
}

footer{
    bottom: 0;
    background-color: rgb(53, 0, 118);
    width: 100%;
 }
 footer p{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center
 }
 footer p span{
    flex: 0 1 auto;
    color: white;
    padding: 20px;
 }
 footer p span img{
    height: 40px;
    width: auto;
 }