@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@700&display=swap");

* {
  font-family: "Balsamiq Sans", cursive;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 100vh;
}

.video_container video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  position: fixed;
}
body .video_container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -6;
}

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%;
    /*background: yellow;*/
    display: flex;
    justify-content: space-between;
}

nav .menu a {
    width: 25%;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main{
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    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;
}

section .btnone{
    /*background: #00b894;*/
    background: #fff;
    color: #000;
}

section .btntwo{
    background: #00b894;
    color: white;
}

/*section .btnthree{
    background: yellow;
    color: white;
}*/
.change_content:after{
    content: '';
    animation: changetext 10s infinite linear;
}
nav .menu a:hover{

    font-size: 18px;
    transition: 0.5s;
    text-decoration: underline;
}
/* @keyframes changetext{
    0%(content:"DELHI")
    20%(content:"JAMMU & KASHMIR")
    35%(content:"AGRA")
    60%(content:"MUMBAI")
    80%(content:"GOA")
    100%(content:"GUJRAT")
} */
