/* ALGEMEEN */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{
    scroll-behavior: smooth;
}

:root {
    --pink: rgba(247, 104, 78, 1);
    --blue: rgba(112,182,200,1);
}

body {
    font-family:'Roboto', sans-serif;
    margin: 0;
}

header {
    background-color: var(--pink);
    padding: 0px 100px;
}

/* NAVIGATIE */
.logo {
    width: 7%;
    height: auto;
}

nav {
    display: flex;
    flex-direction: row;
    padding-top: 25px;
    padding-bottom: 25px;
}

ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    width: 40vw;
    align-items: center;
    text-align: right;
}

li > a {
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: ease-in-out 0.3s;
}

li > a:hover {
    opacity: 50%;
}

.active {
    text-decoration: underline solid var(--blue) 0.15rem;
    text-underline-offset: 5px;
}

/* HOME SECTION */

p {
    width: 500px;
    line-height: 30px;
    font-size: 1.25rem;
}

section {
    display: flex;
    background-color: var(--pink);
    color: white;
    align-self: center;
    justify-content: center;
}

.hotmess {
    display: flex;
    flex-direction: column;
}

img.burger {
    height: 70vh;
    padding-top: 50px;
}

h2 {
    font-size: 10rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding-top: 0;
}

#button {
    border-bottom: solid white 2px;
    border-left: solid white 2px;
    color: white;
    padding: 10px;
    width: 175px;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    margin-top: 25px;
    transition: ease-in-out 0.3s;
}

#button:hover {
    background-color: white;
    color: var(--pink);
}

/* YOUTUBE */

.youtube {
    display: flex;
    flex-direction: row;
    background-color: var(--blue);
    height: 75vh;
    padding: 0px 100px;
    align-items: center;
    justify-content: center;
    color: white;
}

iframe {
    border: none;
}

.info {
    padding-bottom: 75px;
    padding-left: 50px;
}

h3 {
    margin-bottom: 1rem;
    font-size: 6rem;
    font-weight: 900;
    padding-top: 0px;
}

/* TWITTER */

.twitter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--pink);
    padding-bottom: 100px;
}

/* FOOTER */

footer {
    display: flex;
    justify-content: center;
    background-color: var(--blue);
    flex-direction: row;
    align-items: center;
    padding: 25px 100px;
    color: white;
    font-size: 15px;
}

footer > a {
    color: white;
    text-align: left;
}

footer > a:hover {
    opacity: 50%;
}

.voet {
    text-align: right;
    font-size: 15px;
}

footer > img {
    width: 4%;
    height: auto;
    margin-right: 15px;
}

@media only screen and (max-width: 600px) {
    header {
        padding: 10px 25px;
    }
    .logo {
        width: 50%;
    }
    ul {
        flex-flow: column;
        align-items: flex-end;
        width: 40vw;
    }
    p {
        width: fit-content;
        font-size: 0.75rem;
    }
    
    section {
        flex-flow: column-reverse;
        padding-bottom: 20px;
    }
    
    img.burger {
        width: 100%;
        height: auto;
        padding-top: 50px;
    }
    
    h2 {
        font-size: 2rem;
    }

    .info{  
        padding-left: 0px;
        width: 80%;
    }
    
    .youtube {
        flex-direction: column;
        padding: 100px 0px 20px 0px;
        width: auto;
        height: fit-content;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    iframe {
        height: auto;
        width: fit-content;
        padding-bottom: 20px;
    }
    
    h3 {
        margin-top: 0;
        font-size: 3rem;
    }
    
    /* TWITTER */
    
    .twitter {
        width: 80%;
        margin: 0 auto;
    }
    
    /* FOOTER */
    
    footer {
        padding: 20px 0px;
        flex-direction: column;
    }
    
    footer > a {
        text-align: center;
    }
    
    .voet {
        text-align: center;
    }
    
    footer > img {
        width: 20%;
        margin-bottom: 15px;
    }
}