* {
    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;
    
}

.logo {
    display: flex;
    font-size: 300%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 50px;
    padding-left: 20px;
}

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 {
    /* margin: 0px 500px; */
    display: block;
    text-decoration: none;
    margin: 10px;
    padding: 3px 18px;
    /* color: rgb(10, 221, 38); */
    transition: 0.8s;
    color: white;
}

.right-nav li a:hover {
    background: rgb(149, 169, 149);
    color: rgb(0, 0, 0);
    text-decoration: underline;
    transition-duration: 1s;
}

#look-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#look-2::before {
    content: "";
    position: absolute;
    background: url('sun2.jpg') no-repeat center center/cover;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;

}
#look-2 h1 {
    color: black;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#look-2 p {
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
}


footer {
    display: flex;
    height: 6vh;
    font-size: 1.5rem;
    background-color: rgb(54, 111, 235);
    
    color: white;
    justify-content: center;
}
