.parallax {
    /* The image used */
        background-image: url('/getfile/TkkYCBdbClU1TkIYFxdbDUY8EU0WERcHVkUwElUYFxMQFgwyElJYS1xbEE4wBkQEShwBFEYjDU4QHF8WHg0BL2Y=/');

    /* Set a specific height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    height: 500px;
    background-color: rgb(230, 229, 229);
    text-align: center;
    padding: 50px;
}

/* Styles for fixed menu bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background-color: #333;
    z-index: 1000;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar ul li {
    float: left;
}

.navbar ul li a, .dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    background-color: #333;
    border: none;
    cursor: pointer;
}

.navbar ul li a:hover, .dropbtn:hover {
    background-color: #111;
}

/* Styles for sidepanel */
.sidepanel {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidepanel a:hover {
    background-color: #111;
	width:100%;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.aright a {
	white-space: nowrap;
	margin-right: 175px;
}
.aright a:hover {
	white-space: nowrap;
	margin-right: 175px;
}

.aleft a {
	white-space: nowrap;
	margin-left: 120px;
}
.aleft a:hover {
	white-space: nowrap;
	margin-left: 0px;
}




/* Adding top margin to body to avoid content being hidden behind the navbar */
body {
    margin-top: 40px;
}
