body {
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    font-size: 62.5%;
}

h1 {
    font-weight: 700;
    font-size: 5rem;
}

h2 {
    font-weight: 900;
    font-size: 3rem;
    color: #002d65;
}

h3 {
    font-weight: 700;
    color: #0068e9;
}

h4 {
    font-weight: 400;
    font-size: 1.5rem;
}

h5 {
    font-weight: 700;
    font-size: 1.3rem;
}

h6 {
    font-weight: 200;
    font-size: 1.2rem;
}

p {
    font-weight: 400;
    font-size: 1rem;
}

/* Nastavení zobrazení odkazů ve footeru */
a:link, a:visited {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

a:link:active, a:visited:active {
    color: #fff;
}


/* RESPONZIVITA */

@media only screen and (max-width: 1000px) {

    h4 {
        font-size: 1.1rem;
    }
}


@media only screen and (max-width: 675px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.1rem;
    }
}