@media (max-width: 1200px) {
    .nav {
        justify-content: center;
        gap: 20px;
    }

    .nav a {
        margin: 0 10px;
        font-size: 16px;
    }

    .h1main {
        font-size: 1.8rem;
    }

    .h1main.active::before {
        width: 100%;
        max-width: 400px;
        height: 60px;
    }

    body {
        padding: 0 15px;
    }

    .tabula1 {
        border-spacing: 20px 7px;
    }

    #sobaki {
        margin-left: 0;
        margin-top: 30px;
        display: block;
        width: 100%;
    }

    #tablemisija {
        margin-left: 0;
        margin-top: 30px;
        display: block;
    }

    .tabulamisija {
        font-size: 18px;
        width: 100%;
    }

    .tabulamisija td {
        line-height: 24px;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
    }

    .nav a {
        padding: 5px;
    }

    .h1main {
        font-size: 1.4rem;
    }

    .tabula1 {
        border-spacing: 5px 5px;
        font-size: 14px;
    }

    .tabulamisija {
        font-size: 16px;
    }
}

/* HEADER STARTS*/
.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}
.nav a {
    position: relative;
    text-decoration: none;
    color: black;
    margin: 0 15px;
    padding: 10px;
    font-size: 18px;
}

.h1main {
    padding-top: 25px;
    position: relative;
    display: inline-block;
}

.h1main::before {
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    width: 0;
    height: 0;
    background: #e8d5b0;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
    z-index: -1;
}

.h1main.active::before {
    width: 550px;
    height: 120px;
}

/* HEADER BEIGAS*/

body{
    background-color: white;
    text-align: center;
}

.tabula1{
    border-spacing: 100px 7px;
    padding-top: 50px;
    text-align: left;
    margin: auto;
}
#sobaki{
    margin-top: 50px;
    margin-left: 1000px;
}
#tablemisija{
    margin-left: 100px;
    margin-top: -780px; 
}
.tabulamisija{
    font-size: 20px;
    td{
        line-height: 30px;
    }
    tr{
        line-height: 10px;
    }
}