@font-face {
    font-family: "cabin";
    src: url("cabin.ttf");
}

@font-face {
    font-family: "wood";
    src: url("wood.ttf");
}

*{
    font-family: cabin;
    
}

hr{
    background-color: #000000;
    height: 3px;
    border: none;
    border-radius: px;
}

body{
    margin: 0;
    background-image: url(tlo.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #887157;
}

.topbar{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33%;
    text-align: center;
}

.logo h1{
    font-family: wood;
    font-weight: 500;
}

.menu{
    display: flex;
    justify-content: space-evenly;
    width: 34%;
}

.menu-item{
    color: #887157;
    text-decoration: none;
    cursor: pointer;
}

.linki{
    display: flex;
    justify-content: center;
    width: 33%;
}

.linki .link{
    color: #887157;
    text-decoration: none;
    cursor: pointer;
}

.main{
    text-align: center;
}

.galeria .active{
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
    width: 50%;
    margin: 10px 0px;
}

.galeria .active span{
    font-size: 40px;
    cursor: pointer;
}

.galeria .active img{
    width: 30vw;
}

.galeria .album{
    width: 100%;
    margin: 20px 0px;
}

.galeria .album img{
    width: 10%;
    cursor: pointer;
}

.kontakt{
    color: #887157;
}

.kontakt .lista{
    display: flex;
    flex-direction: column;
    font-size: 18px;
    color: #887157;
}

.kontakt .lista span{
    margin: 10px 0px;
}

.stopka{
    margin-top: 30px;
    background-color: black;
    color: white;
    font-size: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.stopka a{
    color: white;
}


@media only screen and (max-width: 1200px) {
    .topbar{
        display: block;
        width: 100%;
        text-align: center;
    }

    .logo{
        display: inline-flex;
    }

    .top-container{
        width: 100%;
        text-align: center;
    }
    
    .menu{
        display: inline
    }

    .linki{
        display: inline-block;
    }
}