.navbar {
    overflow: hidden;
    background-color: darkorange;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    
}

/* Links inside the navbar */
.navbar a {
    float: right;
    display: block;
    color: dodgerblue;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-style: oblique;
}

/* Change background on mouse-over */
.navbar a:hover {
    background: #ddd;
    color: dodgerblue;
}
/* Main content */
.main {
    margin-top: 30px; /* Add a top margin to avoid content overlay */
}

/* Container holding the image and the text */
body { 
    background-image:url("images/empire_state_building_night_1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: normal;
}
.welcome {
    text-align: center;
    padding-top: 21%;
    color: dodgerblue;
}
.title {
    text-align: center;
    color: dodgerblue;
