body {
    margin: 0;

    /** Text **/
    font-family: "seravek-web", "montserrat-alternates", sans-serif;
    text-align: center;

    /** Pozition **/
    justify-content: center;
    align-items: center;
    height: 100%;

    /** img background **/
    background-image: url("images/GB_img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

/** ---------- Article (logo + text) ----------- **/
.logo {
    width: 19rem;
    position: relative;
}

h2 {
    margin: 0;
    font-size: 22px;
    font-family: "seravek-web", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #262626;
    position: relative;
    padding-top: 10px;

}

.logoDiv{
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

@media (max-width: 600px){
    .logo{
        width: 13rem;
    }

    h2 {
        font-size: 16px;
        padding-top: 5px;
    }
}
/** -------------------------------------------- **/

/** --------- Article (button + text) ---------- **/
a {
    font-size: 22px;
    font-family: "seravek-web", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.Tlacitko {
    padding: 6px 15px 6px 15px;
    border: 2px solid;
    text-decoration: none;
    color: #262626;
    letter-spacing: 2px;
}

.Tlacitko:hover {
    background-color: #262626;
    border-color: #262626;
    color: #fff;
}


p {
    font-size: 18px;
    font-family: "seravek-web", sans-serif;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 2px;
    word-spacing: 5px;
    margin: 0;
    position: fixed;
    translate: -50%;
    left: 50%;
    bottom: -150%;
}

.kontakt {
    width: 75%;
    position: fixed;
    bottom: 27%;
    left: 50%;
    translate: -50%;
}

@media (max-width: 600px){
    a{
        font-size: 20px;
    }

    .Tlacitko {
        padding: 5px 13px 5px 13px;

    }

    p {
        font-size: 17px;
        bottom: -120%;
        width: 250px;
    }

    .kontakt {
        bottom: 27%;

    }
}
/** -------------------------------------------- **/

/** -------- footer (soc.site + footer) -------- **/
ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    /**list-style: inside;**/
}

.soc_site_con li {
    display: flex;
    height: 60px;
    width: 60px;
    padding: 2px;
}

.soc_site_con a {
    color: #262626;
    text-decoration: none;
    font-size: 2.5rem;
    line-height: 60px;
    margin: 0 auto;
}

.foot_text h6 {
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-family: "seravek-web", sans-serif;
    font-weight: 200;
    font-style: normal;
    position: relative;
}

/** Hover soc site **/
#behance:hover {
    color: #0067ff;
}

#linkedin:hover {
    color: #0077b5;
}

#instagram:hover {
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: transparent;
    background-clip: text;
}

#facebook:hover{
    color: #3b5998;
}

#tiktok:hover{
    color: #25F4EE;
}

#youtube:hover{
    color: #e62117;
}
/** Hover soc site **/

footer{
    position: fixed;
    bottom: -30px;
    left: 50%;
    translate: -50% -50%;
}

@media (max-width: 600px){
    ul{
        padding-bottom: 4%;
    }

    .soc_site_con li {
        height: 40px;
        width: 40px;
        padding: 10px;
    }

    footer{
        bottom: -5%;
    }
}
/** -------------------------------------------- **/