html,body {
    width:100vw;
    height: 100vh;
    margin: 0;
    background-color:#4C9820;
}

@font-face {
    font-family: 'Annisa';
    src:  url('fonts/Annisa.eot');
    src:  url('fonts/Annisa.eot') format('embedded-opentype'),
      url('fonts/Annisa.ttf') format('truetype'),
      url('fonts/Annisa.woff') format('woff'),
      url('fonts/Annisa.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }

.special_font{
font-family: 'Annisa',sans-serif;
color:#fff;
font-size:40px;
}

#lang-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 10px 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-flag {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.4);
}

.lang-btn.lang-active {
    background: rgba(255,255,255,0.6);
    font-weight: bold;
}

.form-control {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: inline-block;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin:10px 0;
  }

  label {
    display: block;
  }

a  {
    text-decoration:none;
  }

  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor:pointer;
    background:#0B643C;
    color:#fff;
    margin:15px 0;
  }

  .btn:hover {
    background:#fff;
    color:#0B643C;
  }


#content{
    background:transparent;
    text-align:center;
    font-family: 'Bitter', serif;
    font-weight:400;
    color:#fff;
    font-size:17px;
    width:100%;
    margin-top:30px;

}


#pecet{
    width:200px;
    height:auto;
    margin:0 auto;
}

.content_flex{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5%;
}

#content h1{
    font-weight:700;
    font-size:24px;
}


.content_flex_row{
    margin-top:30px;
    display: flex; /* or inline-flex */
    flex-direction:column;
    margin-top:10px;
}


.text{
    padding:0 15%;
}

table{
    width:100%;
    text-align:left;
    margin-bottom:30px;
}

td, th{
    padding:6px 10px;
    border-bottom:2px solid #92b865;
}



@media (min-width: 1000px) {

    .content_flex_row{
        flex-direction:row;
        background:transparent;
        justify-content: space-between;
        gap: 30px;
    }
    .btn{
        flex-grow: 1;
     }


}



    



