body    {
    background-color: black;
}

.container  {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


/*H1 Settings*/

.item  h1 {
    font-size: 190px;
    font-family: Impact;
    color: white;
    font-weight: 99;
    margin-top: 40px;
    margin-left: 50px;
    padding: 15px 1px;
}

@media screen and (max-width: 680px) {
    .item  h1 {
        font-size: 120px;
    }
}


/*H2 Settings*/

.item h2 {
    font-family: avenir-next-world, sans-serif;
    font-size: 90px;
    margin-top: -100px;
    margin-right: 50px;
    color: blue;
    text-align: right;
    
    
}


/*Header*/

.header {
    align-content: right;
  position: fixed;
  height: 0;
    padding: 0 25px;
    border-radius: 10px;
margin-top: 35px;
  display: flex;
  align-items: center;
}

.lines {
  width: 32px;
  cursor: pointer;
  position: relative;
}

.lines span {
  display: block;
  height: 4px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: blue;
    border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 24px;
}

.dropdown li {
  padding: 12px 0;
}

.dropdown a {
  color: #fff;
    font-family: avenir-next-world, sans-serif;
  text-decoration: none;
  font-size: 20px;
    transition: 0.3s;
}

.dropdown a:hover {
    font-size: 25px;
}

.lines:hover .dropdown {
  max-height: 300px;
}

.lines:hover span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.lines:hover span:nth-child(2) {
  opacity: 0;
}
.lines:hover span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/*Line Settings Middle*/

hr  {
    border: none;
    height: 50px;
    background-color: white;
    width: 100%;
    margin: auto;
    margin-top: 25px;
}

.lines_bottom .one {
    	margin-left: -400px;
    background-color: blue;
}

.lines_bottom .two {
    margin-left: -300px;
    background-color: white;
}

.lines_bottom .three {
    margin-left: -200px;
    background-color: blue;
}

/*Bottom Flex box and Text*/

.container_2   {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  gap: 50px;
  margin-top: 100px;
}

.items_2 img {
  max-width: 800px;
  border-radius: 60px;
}

@media screen and (max-width: 1000px)  {
  .items_2 img {
      max-width: 500px;
  }
}


.items_2 h2 {
  color: white;
  font-family: avenir-next-world, sans-serif;
  font-weight: 100;
}