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

p, #video a, #privacy a, footer a {
    font-size: 18px;
}

.primary-color {
    background-color: #22409A;
}

.secondary-color {
    background-color: #EC501A;
}

.text-primary {
    color: #22409A;
}

.text-secondary {
    color: #EC501A;
}

.logo {
    max-width: 125px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

body {
    font-family: sans-serif;
    font-weight: 400;
}

h2 {
    text-decoration: underline;
    text-decoration-color: #EC501A;
    text-underline-offset: 18px;
}

img {
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

img:hover {
    transform: scale(1.02);
}

.video-underline {
    text-decoration: underline;
    text-decoration-color: #22409A;
    text-underline-offset: 10px;
}

.video-underline:hover {
    text-decoration: none;
}

footer img {
    max-width: 300px;
}

@media (max-width: 768px) {

    .little-text {
        font-size: 16px;
    }

    h2 {
        text-underline-offset: 14px;
    }
}

@media (max-width: 350px) {

    h2 {
        font-size: 2.25rem  !important;
        line-height: 2.5rem;
        text-underline-offset: 10px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

}

@media (max-width: 300px) {

    h1, h2, h3 {
        font-size: 1.5rem !important;
        line-height: 2.25rem;
        text-underline-offset: 7px;
    }

    p, a {
        font-size: 16px;
    }

    .set-solution {
        flex-direction: column;
    }
    
    footer img {
        max-width: 200px;
    }

    #scrollButton {
        padding: 0.75rem;
    }

    #scrollButton img {
        width: 20px;
        height: 20px;
    }

}