* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    font-size: 62.5%;
    /* 1 rem = 10x */
    position: relative;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
}

header {
    position: absolute;
    padding: 0 3.5rem;
    height: 6rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    text-align: center;
}

.header .header-bar {
    width: 500rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .head-logo {
    color: #ffffff;
    height: 2rem;
    width: 10rem;
    text-shadow: 2px 2px 10px #ffffff;
    justify-content: left;
}

.head-logo:hover{
    color: #4ee0e0;
    transition: 0.5s ease-in-out;
}

.navbar .navbar-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.navbar .navbar-list .navbar-list-item a {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.navbar .navbar-list .navbar-list-item a:hover {
    color: rgb(78, 224, 224);
    transition: 0.5s ease-in-out;
} 

section {
    font-size: large;
    width: 100%;
    height: 100vh;
    display: grid;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.section-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)),
        url(../img/ladakh.jpg);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 2px 2px 10px #ffffff;
}

.section-1 h1 {
    font-size: 7rem;
}

.section-1 p {
    font-size: 2rem;
}

.section-2 {
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1)),
        url(../img/ladakh.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
}

.section-3 {
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1)),
        url(../img/manali.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
}

.section-4 {
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1)),
        url(../img/jaipur.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
}

.section-5 {
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1)),
        url(../img/goa.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
}

.section-6 {
    text-align: left;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1)),
        url(../img/kerala.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
}

.content {
    color: #ffffff;
    text-shadow: 2px 2px 10px #ffffff;
    margin: 10%;
    height: 30%;
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    text-wrap: wrap;
    width: 80%;
}

.show {
    animation: animate 1s ease-in-out 1 forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

footer {
    font-size: large;
    height: 50rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-details{
    width: 100%;
    height: 20%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;  
}

#author{
    text-align: right;
    font-size: large;
    font-weight: 400;
}

#twitter-icon{
    width: 35px;
    height: 35px;
    margin-left: 15px;
}

::-webkit-scrollbar {
    display: none;
}