body, html, h1, h2, h3, h4, p {
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 20px;
    font-weight: 300;
}

html h1, html h2{
    font-weight: 900;
}

html button {
    font-size: 16px;
    font-weight: 700;
}

video[poster] {
    object-fit: cover;
}

.bg-opacity-black {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-magenta {
    background-color: #C2B1F2;
}

.bg-magenta-hover:hover {
    background-color: #C2B1F2;
}

.text-magenta {
    color: #C2B1F2;
}

html .bg-turqoise {
    background-color: #5DEDC7
}

.bg-turqoise-hover:hover {
    background-color: #5DEDC7;
}

.text-turqoise-hover:hover {
    color: #5DEDC7;
}

#background-video {  
    width: 100vw;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;

}

.hyphen {
    hyphens: auto;
}

#subModal .bg-white{
    font-size: 16px;
    animation: blur-in 600ms ease-in-out;
}

@keyframes blur-in {
    from {
        opacity: 0;
        transform: translate(0, -20%);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media screen and (max-width: 428px) {
    html {
        font-size: 14px;
    }

    .font-light.text-lg {
        font-size: 22px;
    }
}