@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: bolder;
}

@font-face {
  font-family: 'Bebas';
  src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: bolder;
}
body{
    background-color: #505050;
    color: white;

    font-family: Poppins;
    font-size: clamp(10pt, 2.5vw, 20pt);
    height: fit-content;
    
    margin: 0px;
    overflow-x: hidden;
}

a{
    color: cyan;
}

fieldset{
    margin-top: 15px;
    margin-bottom: 10px;
    background-color: #202020;

    border: none;
    box-shadow: 12px 12px black;
}

h1{
    background-color: grey;
    box-shadow: 1vw 1vh black;

    text-align: center;

    margin: 0px;
    padding: 0.5vw;
}

.content{
    max-width: 100vw;
    height: fit-content;
    margin: 1vw;
}

.topbar{
    background-color: #202020;
    position: sticky;
    top: 0;

    padding: 0;

    height: 13vh;

    font-family: Bebas;
    font-size: 20vw;

    overflow: hidden;
    width: 100vw;
}

.topbar a{
    text-decoration: none;
    color: white;
}

.topbar p{
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    padding: 0;
    margin: 0;

    text-align: left;
    background-color: none !important; 
}

.post-left{
    margin-bottom: 5%;
    background-color: #202020;
    box-shadow: 1cqw 1cqh cyan;
    display: flex;
    height: 25cqw;
    width: 100%;
    
    overflow: hidden;
}

.post-left img{
    object-fit: cover;
    width: 25cqw;
    height: 25cqw;
    min-width: 30%;
}

.text{
    margin: 3%;
    width: 100%;
    display: flex;    
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.post-left h3{
    padding: 0;
    margin: 0;
    display: flex;
    

    font-family: Bebas;
    font-size: 10cqw;

    text-shadow: 1cqw 1cqh fuchsia;
}

.post-right{
    margin-bottom: 5%;
    margin-left: auto;
    background-color: #202020;
    box-shadow: 1cqw 1cqh cyan;
    display: flex;
    height: 25cqw;
    width: 100%;
    
    overflow: hidden;
}

.post-right img{
    object-fit: cover;
    width: 25cqw;
    height: 25cqw;
    min-width: 30%;
}
.post-right .text{
    width: 100%;
    display: flex;    
    text-align: center;
    align-items: center;
    justify-content: center;

}
.post-right h3{
    padding: 0;
    margin: 0;
    display: flex;
    

    font-family: Bebas;
    font-size: 10cqw;

    text-shadow: 1cqw 1cqh fuchsia;
}

h2{
    text-align: center;
    background-color: #202020;
    box-shadow: 12px 12px black;
    padding-top: 10px;
    padding-bottom: 10px;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}


body::-webkit-scrollbar-track {
  background: #202020;
  border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
  background-color: #404040;
  background-size: cover;
  border-radius: 0px;
}

div::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

div::-webkit-scrollbar-track {
  background: #202020;
  border-radius: 0px;
}

div::-webkit-scrollbar-thumb {
  background-color: #404040;
  background-size: cover;
  border-radius: 0px;
}

pre::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

pre::-webkit-scrollbar-track {
  background: #202020;
  border-radius: 0px;
}

pre::-webkit-scrollbar-thumb {
  background-color: #404040;
  background-size: cover;
  border-radius: 0px;
}

.foo{
    padding: 0;
    margin: 0;
    min-height: 20vw;
    background-color: #202020;
    box-shadow: 1vw 1vw #202020, -1vw -1vw #202020, 1vw -1vw #202020, -1vw 1vw #202020;
    width: 100%;
    margin-top: 50px;
}

.panel{
   height: 0;
   visibility: hidden;
}

.panel.show{
    height: auto;
    visibility: visible;
    transition: visibility 3s ease;
}
pre{
    background-color: #404040;
    padding: 20px;
}

.s_kod{
    /* width: 100%; */
    overflow-x: auto;
    background-color: #202020;
    
}

.wazne{
  background-color: #4d064d;
}