.ustbar{
    width: 100%;
    height: 10svh;
    color: white;
    background-color: rgb(10, 148, 10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.marka{
    font-family: "Libre Baskerville", serif;
    font-size: 3svh;
    font-weight: bold;
    margin-right: 1svh;
}

.fa-solid.fa-leaf{
    font-size: 3svh;
}

.menu{
    width: 100%;
    height: 8svh;
    background-color: rgb(10,10,10);
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    font-size: 2svh;
    font-weight: 500;
    border-bottom: 1px solid rgb(196, 196, 196);
}

.menu-el:first-child{
    width: 30%;
    text-align: center;
}

.menu-el:nth-child(2) {
    width: 40%;
    text-align: center;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.menu-el:last-child{
    width: 30%;
    text-align: center;
}

.menu-el a{
    display: block;
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

@media screen and (min-width:800px) {
    
    .ustbar{
        height: 8vh;
    }

    .marka{
        font-size: 2.8vh;
    }

    .fa-solid.fa-leaf{
        font-size: 2.8vh;
    }

    .menu{
        font-size: 1.6vh;
        height: 7.8vh;
    }
}