
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
  }
  
  .nav-container {
    background: linear-gradient(90deg, rgb(241, 245, 216) 5%, rgb(233, 224, 250) 96%);
    height: 80px;
    width: 100%;
  }
  
  label.logo {
    color: rgb(0, 0, 0);
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }
  
  nav ul{
    float: right;
  }
  
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  
  nav ul li a{
    color: rgb(17, 15, 15);
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
  }
   
  a.active, a:hover{
    background: #717a81;
    transition: .5s;
  }
  
  .checkbtn{
    font-size: 30px;
    color: rgb(0, 0, 0);
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: rgb(47, 61, 90);
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }

body{
    background-image: url(5676696.jpg);
}
.container {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
}

.title {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 70px;
}

.about-content {
    display: flex;
    flex: wrap;
    align-items: center;
}
.half-size {
    width: 450px;
    height: 350px;
    border-radius: 10px;
}
.image {
  flex: 1;
  margin-right: 30px;
}
.image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.image:hover img {
    transform: scale(1.1);
}
.content {
    flex: 1;
    margin-left: 20px;
}

.container p{
    font-size: 17px;
    line-height: 1.6;
}