body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("img/bg.webp");
    line-height: 1.5;
}

header {
    background-color: #fff;
    padding: 10px 0;
    border: solid black;
}
.logot{
    width: 20%;
    /* background-color: white; */
    padding: 0 5px;
}
.a1{
  /* margin-left: -60%; */
}
.navigation{
  display: flex;
  justify-content: center;
}
.ii{
  background-color: #000;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: blue;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}
.title1{
  color: red;
  
}

section {
    padding: 20px;
    text-align: center;
}

/* table */

table {
    width: 100%;
    font-family: arial, sans-serif;
    border-collapse: collapse;
    border:solid 1px #000;
  }

  .th1{
    justify-content: center;
    padding: 10px;
    text-align: right;
    font-size: 20px;
  }
  
  td {
    border: 1px solid #000;
    text-align: left;
    padding: 8px;
    color: blue;
  }

  .forum{
    color: red;
    font-weight: bold;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }


#participants .participant {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

#participants .participant img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.pdf-container{
    width: 50%;
    display: inline-flex;
    text-align: center;
}
.img1{
    color: inherit;
    text-decoration: none;
}
.img1 img{
    width: 100%;
    border-radius: 10px;
}
.img2{
  width: 200px !important;
  height: 150px;
}
.imgc{
    margin: 0 10px;
}

.ol-bg{
    background-color: #dddddd;
    padding-top: 10px;
}
.h2p{
    text-align: center;
}
.h2t{
    color: red;
}
.h2j{
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}


/* Модалдык терезе стилдери */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    height: 80%;
    max-width: 1000px;
    border: none;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}










body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  nav {
    /* background-color: green; */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  ul li {
    margin-right: 20px;
  }
  
  ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  ul li a:hover {
    color: lightgreen;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }
  
  @media (max-width: 768px) {
    .checkbtn {
      display: block;
      order: 1;
      margin-right: 20px;
    }
  
    ul {
      position: fixed;
      top: 80px;
      right: -100%;
      background-color: green;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
    }
  
    ul li {
      margin: 20px 0;
    }
  
    ul li a {
      font-size: 20px;
    }
  
    #check:checked ~ ul {
      right: 0;
    }
  }