@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,100&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    display: flex;
    width: 100vw;
    height: 20vh;
    background-color: inherit;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
}

main{
    position: absolute;
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    flex-wrap: wrap;
    justify-content: center;
}

nav{
    z-index: -1001;
}

.show{
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    width: 20vw;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #292b2e;
    z-index: 1001;
    transition: all 400ms ease-in-out;

}

.hide{
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    width: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #292b2e;
    z-index: -1001;
    opacity: 0;
    transition: all 400ms ease-in-out;
}

footer{
    display: flex;
    width: 100vw;
    height: 40vh;
    background-color: #111111;
    color: #e2e4e6;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.bx-home, .bx-phone-call, .bx-envelope{
    font-size: 1.5em;
}

.footer_ul{
    list-style-type: none;
}

.footer_link{
    text-decoration: none;
    color: #e6e6e6;
}

@media screen and (max-width: 768px){
    footer{
        height: 85vh;
    }

    .footer_kontakt, .footer_linkovi{
        width: 90vw;
    }

    .show{
        width: 100vw;
        height: 85vh;
    }

    .hide{
        width: 100vw;
        height: 0;

    }


}


