*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}
a {
    text-decoration: none;
}
header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15)),
      url("./assets/images/photo1jpg.jpg");
    background-repeat: no-repeat;
    background-size: cover;

  }


nav{
    display: flex;
   justify-content: space-between;
   align-items: center;
   text-align: center;
   padding: 0 20px 0 20px;
   width: 100%;
   height: 15vh;
  
   color: white;
   background: rgba(0, 0, 0, 0.2);
}
nav .logo{
    width: 25%;
    
}
nav .logo h1 {
    font-size: 25px;
  }
    .nav-toggle {
        display: none;
     
    }

  .text-shadow-drop-center{-webkit-animation:text-shadow-drop-center .6s 2s infinite alternate both;animation:text-shadow-drop-center .6s 2s infinite alternate both}
 
 
 @-webkit-keyframes text-shadow-drop-center{0%{text-shadow:0 0 0 transparent}100%{text-shadow:0 0 18px black}}@keyframes text-shadow-drop-center{0%{text-shadow:0 0 0 transparent}100%{text-shadow:0 0 18px black}} 
  
.menu{
    width: 40%;
    display: flex;
    justify-content: space-around;
    font-size: 15px;
   text-transform: uppercase;
}
nav .menu a {
    width: 25%;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  nav .menu a:hover{
    color:  #00401A;
    transition: .2s ease-in;
  }
  nav .menu a:first-child {
    color: #00401A;
  }

  main{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    height: 85vh;
    color: white;
  }
  section h3{
    font-size: 35px;
    font-weight: 200;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px black;
  }

  section h1{
    margin: 30px 0 20px 0;
    font-size: 55px;
    font-weight: 700;
    text-shadow: 2px 1px 5px black;
    text-transform: uppercase;
  }

  section p {
    font-size: 25px;
    word-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px black;
  }

  
  section a {
    padding: 12px 30px;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s ease;
  }
  
  section .btnone {
    /* background: #00b894; */
    background: #fff;
    color: #000;
  }
  
  .btnone:hover {
    background:  #00401A;
    color: white;
  }
  
  section .btntwo {
    background: #00401A;
    color: white;
  }
  
  .btntwo:hover {
    background: #fff;
    background:#00401A;
    color: #000;
  }
   
  .change_content:after {
    content: "";
    animation: changetext 10s infinite linear;
    color:#00401A;
  }
  
  @keyframes changetext {
    0% {
      content: "Karachi";
    }
    20% {
      content: "Lahore";
    }
    35% {
      content: "Islamabad";
    }
    60% {
      content: "Punjab";
    }
    75%{
      content: "Faisalabad";
    }


    80% {
      content: "Peshawar";
    }


    100% {
      content: "Multan";
    }


  }