* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Lexend';
	font-style: normal;
	text-decoration: none;
}

/*-------------------------------------------------------*/
/* DESKTOP VIEW */

@media screen and (min-width: 914px) {

.nav-bar {
        position: sticky;
	z-index: 2;
        display: flex;
        align-items: center;
        width: 100%;
        height: 125px;
        left: 0px;
        top: 0px;
        background: black;
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        width: 100%;
        height: 52.05px;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 303px;
}
.menu-bar {
        display: none;
}
.buttons {
        display: flex;
        width: auto;
        height: auto;
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
	text-align: center;
	align-items: center;
}
.buttons a {
        text-decoration: none;
        color: white;
}
.nav-btn a:hover  {
        color: #8fb5a6;
	cursor: pointer;
}
.nav-btn {
	width: 8.5vw;
	height: 52px;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	justify-content: center;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	top: 100%;
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.extra-links-btn:hover .dropdown-content {
	display: block;
	animation: 0.5s fadeIn;
}
.event-btn:hover .dropdown-content {
        display: block;
        animation: 0.5s fadeIn;
}

@keyframes fadeIn {
        0% {
                opacity: 0;
        }

        100% {
                opacity: 1;
        }
}

.sidebar, .close-button, .dark-background {
        display: none;
}

}

/*-------------------------------------------------------*/
/* MOBILE VIEW */

@media screen and (max-width: 915px) {

.nav-bar {
        position: sticky;
        z-index: 2;
        display: flex;
        align-items: center;
        width: 100%;
        height: 90px;
        left: 0px;
        top: 0px;
        background: black;
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        width: 100%;
        height: 52.05px;
        gap: 10%;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar:hover {
        cursor: pointer;
}
.buttons {
        display: none;
}
.social-icons {
        display: none;
}
.sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
        background-color: #111111;
        overflow-x: hidden;
        transition: 0.5s;
}
.top-panel {
        display: flex;
        align-items: center;
        width: 100%;
        height: 10vh;
        border-bottom: 1px solid grey;
}
.close-button {
        position: absolute;
        color: white;
        right: 0px;
        text-align: left;
        font-size: 250%;
        padding-right: 25px;
}
.sidebar-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: auto;
	gap: 8vw;
        top: 15%;
        margin-left: 14vw;

        font-weight: 700;
        font-size: 6vw;
}
.sidebar-links a {
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
}
.side-btn {
	display: flex;
}
.side-extra-links {
	flex-direction: column;
}
.sidebar-social-icons {
        display: flex;
        flex-direction: row;
        gap: 1vw;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	font-size: 5vw;
}
.side-dropdown-content a {
	text-indent: 7vw;
}
.dark-background {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        background-color: black;
        opacity: 0.5;
        overflow-x: hidden;
}

.event-side-links {
	flex-direction: column;
}


}
