* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url("images/himalaya.jpg");
    background-size: 100% 100%;

}

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

.logo {
    width: 25%;
    text-align: center;

}

nav .menue {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav .menue a {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

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

main {
    width: 100%;
    height: 87vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: wheat;
}


.change__content {
    text-transform: uppercase;
    color: #00b894;
    font-size: 65px;
    transition: all .1s ease-in;
}

.change__content::after {
    content: "";
    animation: changetext 10s infinite ease-in-out;

}

main section h3 {
    font-size: 35px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px black;
}

main section h1 {
    font-size: 55px;
    font-weight: 700;
    text-shadow: 2px 1px 5px black;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
}

main section .span {
    font-size: 25px;
    color: #eee;
    word-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px black;
    text-transform: capitalize;
    display: block;
}

section a {
    text-decoration: none;

    text-transform: uppercase;
    margin-right: 30px;
    font-size: 13px;
    padding: 12px 30px;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    /* font-size: 13px; */
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;

}

.btn1 {
    background-color: #fff;
    color: black;
    margin-right: 30px;

}

.btn1:hover {
    background-color: #00b894;
    color: #fff;
}

.btn2 {
    background-color: #00b894;
    color: #fff;
    margin-left: 30px;

}

.btn2:hover {
    background-color: #fff;
    color: black;
}

@keyframes changetext {
    0% {
        content: "kolhapur";
    }

    10% {
        content: "mumbai";
    }

    20% {
        content: "jaipur";
    }

    30% {
        content: "kerla";
    }

    40% {
        content: "kashmir";
    }

    50% {
        content: "asam";
    }

    60% {
        content: "pune";
    }

    70% {
        content: "delhi";
    }

    80% {
        content: "kolkata";
    }

    90% {
        content: "agra";
    }

    100% {
        content: "dwrka";
    }

}