* {
    margin: 0px;
    padding: 0px;
}

.nav-bar {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.nav-bar::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}


nav a {
    text-decoration: none;
}

.right-nav {

    font-family: 'Baloo Bhai', cursive;
    display: flex;
    position: sticky;
}

.right-nav li {
    list-style: none;
    font-size: 1.3rem;
}

.right-nav li a {

    display: block;
    text-decoration: none;
    margin: 10px;
    padding: 3px 18px;

    transition: 0.8s;
    color: white;
}

.right-nav li a:hover {
    background: rgb(148, 160, 148);
    color: rgb(0, 0, 0);
    text-decoration: underline;
    transition-duration: 1s;
}

#look-1 {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

#look-1::before {
    content: "";
    position: absolute;
    background: url('sun4.jpg') no-repeat center center/cover;
    height: 100vh;
    top: 0px;
    left: 0px;
    width: 100%;

    z-index: -1;
}

#look-1 h1 {
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#look-1 p {
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}

#look-2 {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120vh;
    width: 100%;
}

#look-2::before {
    content: "";
    position: absolute;
    background: url('sun4.jpg') no-repeat center center/cover;
    height: 100vh;
    top: 0px;
    left: 0px;
    width: 100%;

    z-index: -1;
}

#look-2 h1 {
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#look-2 p {
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}
footer {
    display: flex;
    height: 6vh;
    font-size: 1.5rem;
    background-color: rgb(54, 111, 235);
    
    color: white;
    justify-content: center;
}