﻿@charset "UTF-8";
/* CSS Document */

html {
	background-color: #444444;
}

body {
	margin: 0;
}

.nuss {
    -webkit-transition: fill .5s ease-in-out;
    -moz-transition: fill .5s ease-in-out;
    -o-transition: fill .5s ease-in-out;
    transition: fill .5s ease-in-out;
}
               
.nuss:hover {
    fill: #8F3F86;
}

.navbar {
	background-color: #444444;
	height: 50px;
}

.navbar_logo {
	width: 30px;
	height: 50px;
}

a {
    text-decoration: none;
}

.menuitem {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
	font-family: 'LatoWebLight';
	font-style: normal;
	transition: color .3s ease-in-out
}

.menuitem:hover {
	color: #8F3F86;
}

.panel {
	background-color: white;
	border-radius: 20px;
	position: static;
	text-align: center;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 100px;
	/* Makes fully-scalable
	margin-right: 150px;
	margin-left: 150px; */
}

@media only screen and (max-width: 735px) {
    .menuitem {
		display: none;
	}
	
	.navbar_logo {
		display: block;
	}
	
	/*JS classes*/
	
	.mobile_menu_btn {
		-webkit-font-smoothing: antialiased;
		font-size: 30px;
		color: white;
		position: absolute;
		margin-left: 30px;
		margin-top: 7px;
		transition: color .3s ease-in-out;
        z-index: 11;
	}
	
	.mobile_menu_btn:hover {
		color: #8F3F86;
	}
	
	.mobile_menu {
        z-index: 10;
		position: absolute;
		background-color: #444444;
        height: 100%;
        left: 0px;
        right: 0px;
	}
	
	.menu_block {
        border-left: 1px solid #8F3F86;
	    padding-left: 10px;
		width: 110px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	.menu_text_block {
		display: inline-block;	
	}
	
	.p_white {
        font-family: 'LatoWebLight';
        font-style: normal;
		font-size: 20px;
		color: white;
		transition: color .3s ease-in-out;
        text-align: left;
        padding-bottom: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
	}

    .p_white_last {
        font-family: 'LatoWebLight';
        font-style: normal;
		font-size: 20px;
		color: white;
		transition: color .3s ease-in-out;
        text-align: left;
        padding-bottom: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
	
	.p_white:hover, p_white_last:hover {
		color: #8F3F86;
	}
}