Mighty Tiny

html {
    font-size: 62.5%; /* font is 10px, lekker makkelijk rekenen */}
body{
    margin: 0; /*de body heeft standaard een margin van 8px. Dat zorgt voor een wit randje om jouw website. Beter om dat op 0 te zetten.*/
    font-size: 1.6rem;
}
header {
    background-color: #1f381e;
    padding: 20px; /*anders staat de tekst tegen de rand van het header blok*/
}


header img.logo {
    width: calc(100% - 120px); 
    margin-top: -15px;
    margin-left: 10px;
    display: block;
}
article {
    background-color: rgb(245, 244, 244);
    padding: 25px; /*anders staat de tekst tegen de rand van het content blok*/
}
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 */
}

/*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;
}

.call-to-action-button{
    position: absolute;
    top: 42%;
    left: 50%;
    bottom: 50;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.179);
    color: white;
    font-size: 20px;
    font-family: "darkmode-mono-off", sans-serif;
    font-weight: 400;
    line-height: 2;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    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: white;
    background-color: rgb(5, 49, 31);
    border-color: white;
    box-shadow: 0px 0px 5px 5px rgba(0, 255, 34, 0.5); 
 }

p.streamer {
    color: rgb(126, 126, 126);
    font-size: 20px;
    font-family: "darkmode-mono-off", sans-serif;
    font-weight: 400;
    font-style: italic;
}
h1{
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:25px;
    color: #e0dcb9;
}
h2{
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size:30px;
}
h3{
    font-family: "darkmode-mono-off", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:16px;
}

h4{
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:20px;
    color: #000000;
}

a{color: black;

}

.aanmeldknop{
    border: 1px solid rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    color: rgb(3, 25, 2);
    font-size: 16px;
    font-family: "darkmode-mono-off", sans-serif;
    font-weight: 400;
    line-height: 2;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}





 footer {
    display: block;
    background-color:#343434;
    color: #e0dcb9;
    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::fter{
    display: table;
    content:'';
    clear: both;`
}

@media screen AND (min-width:800px) {
    header img.logo {
        width: 360px;
        float: left;
        margin-right: 20px;
        margin-bottom: -10px;
        margin-top: -40px;
        
    }   
    
    header {
        background-color:#343434;
    }

    article {
        background-color: rgb(196, 216, 199);
    }
   
    .call-to-action-button{
        position: absolute;
        top: 85%;
        left: 50%;
        bottom: 50;
        transform: translate(-50%, -50%);
    }
    img{
        margin-top: auto;
        margin-bottom: auto;
        margin-left: 180px;
        margin-right:-20px;
    }

    footer{
        background-color: #1f381e;
    }
}