body{
    font-family: 'Poppins', sans-serif;
    min-height: 100vh; 
    background:var( --pozadi_2);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center; 
    display: flex; 
    flex-direction: column;
  }
  main {
  
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    padding-top: 78px;
    flex: 1;
    }
    .mid{
    width: 40%;
    padding:10px 4% 0 4%;
    box-shadow: 0px 0px 15px hsl(220, 20%, 26%);

    }
    .right{
    width: 30%;
    }
    .left{
    width: 30%;
    display: flex;
    flex-direction:column;
    align-items:center;
    padding:10px 4% 0 0%;

  }
.main_heading h1 {
    text-align: center;
    margin: 30px 0 30px 0;
    color:var(--nadpis_h1); 
    font-size: 25px;
}
.main_heading h2 {
    text-align: center;
    margin-bottom: 30px;
    color:var(--nadpis_h2); 
    font-size: 30px;
}
.main_heading p {
    text-align: center;
    transform: translate(-25%,-20px);
    color:var(--text); 
    font-size: 15px;
}

.filter_input{
    width: 300px;
    padding: 10px;
    outline: none;
    font-size: 20px;
    font-family: Verdana,Tahoma, sans-serif;
    border: 1px solid black;
    border-radius: 5px;
   text-align: center;
}
.filter_input:focus{
    background-color: rgb(246, 231, 165);
}
.all_students{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    align-items: center;
         
}

.one_student{
    width: 250px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--pozadi_box);
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0px 0px 4px hsl(220, 20%, 26%);
    text-decoration: none;
    
}

.one_student:hover{
    transform: scale(1.05);
}

a.one_student h2{
    color: var(--nadpis_h2);
    font-size: 17px;
      
}

.one_student a {
    color: var(--nadpis_a);
    font-size: 15px;
   }
   @media(max-width: 1010px){
  
    .left{
        display: none;
    }
    .right{
        display: none;
    }
    .mid{
        align-items: center;
        width: auto;
    }
}