* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;

}

header {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15)),
    url("taj_mahal.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  width: 100%;
  height: 15vh;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

nav .logo {
  width: 25%;
  text-align: center;
  /*background: red;*/
}

nav .menu {
  width: 40%;
  display: flex;
  justify-content: space-around;
}
 
nav .menu a {
  width: 25%;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav .menu a:first-child {
  color: #00b894;
}

main {
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  /*background-color: black;*/
}

section h3{

	font-weight: 200;
	font-size: 30px;
	letter-spacing: 3px;
	text-shadow: 2px 2px 0 black;

}

section h5{

	font-weight: 200;
	font-size: 50px;
	text-shadow: 2px 2px 0 black;
	letter-spacing: 3px;
	margin: 30px 0 20px 0;
}

section p{
	text-shadow: 2px 2px 0 black;
	margin-bottom: 20px;
	font-weight: 300;
	letter-spacing: 2px;
}

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;
}


.btnone{

  background-color:white;
  color: black;
}

.btntwo{

  background-color: #99ff66;
  color: black;

}
.btnone:hover{

  background-color:  #99ff66;

}

.btntwo:hover{

  background-color: white;
}


.change_content:after {
  content: "";
  animation: changetext 20s infinite linear;
  color: #00b894;
}

@keyframes changetext {
  0% {
    content: "Darjeeling";
  }
  20% {
    content: "Agra";
  }
  35% {
    content: "Jaipur";
  }
  60% {
    content: "kerala";
  }
  80% {
    content: "delhi";
  }
  100% {
    content: "Mumbai";
  }
}