html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 200vh;
    font-family: 'Ubuntu', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
}

.uvod {
    height: 100vh;
    background-image: linear-gradient(38deg, rgb(0, 58, 134), rgb(53, 248, 255));
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.uvod h1 {
    color: white;
    font-size: 5em;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: auto;
}

.uvod h2 {
    color: white;
    font-size: 3em;
    font-weight: 100;
}

.uvod a {
    margin: auto;
    margin-bottom: 25px;
}

.uvod img {
    height: 50px;
}

.kontakt {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kontakt p:nth-of-type(1) {
    margin-top: auto;
}

.kontakt p {
    font-size: 2em;
    font-weight: 100;
    text-align: center;
}

.kontakt .socSit {
    margin: auto 0 25px 0;
}

.kontakt img {
    margin: 0 15px;
    width: 60px;
}

@media screen and (max-width: 700px) {
    .uvod h1 {
        font-size: 3em;
    }

    .uvod h2 {
        font-size: 2em;
    }

    .kontakt p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 376px) {
    .uvod h1 {
        font-size: 2.2em;
    }

    .uvod h2 {
        font-size: 1.8em;
    }

    .kontakt p {
        font-size: 1.5em;
    }
}