@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


@tailwind base;
@tailwind components;
@tailwind utilities;


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Shadows Into Light Two';
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18.72px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 13.28px;
}

h6 {
    font-size: 10.72px;
}

p{
    font-size: 22px;
    line-height: 40px;
}

.muisjes-text{
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    line-height: 36px;
}

.video-background {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.title{
    height: 80vh;
}

.contact-background {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .video-background {
        position: relative;
        width: 100%;
        height: 45vh;
        overflow: hidden;
    }
    .title{
        height: 40vh;
    }

    .contact-background {
        position: relative;
        width: 100%;
        height: 90vh;
        overflow: hidden;
    }
}