@font-face {
    font-family: bgFontADYS;
    src: url(ADYS-Regular-V5-4.woff);
}

body {
    background-image: url(../images/BackGround.png);
    background-color: white;
    font-family: bgFontADYS;
    overflow-x: hidden;
}
body{
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto;
    grid-template-areas: 
        "header"
        "menu"
        "content"                   
        "footer";
    text-align:justify;
    background-color:#f2e5e4;
    text-indent:15px;
    font-family: Veleka;
    font-family: bgFontADYS;
}

header{
    grid-area: header;
    border: none;
    /*margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;*/
    /*padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;*/
	margin: auto;
	/*width: 60%;*/
}

nav {
    list-style-type: none;
	border-color: red;
}
nav{
    grid-area: menu;
    border: none;
    display: list-item;
    padding-bottom: 10px;
	margin: auto;
	/*width: 60%;*/
	width: 900px;
}

article{
    grid-area: content;
    /*margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;*/
    border: none;
    /*padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;*/
    display: block;
    background-color: white;
	margin: auto;
	/*width: 70%;*/
	width: 900px;
}

aside{
    grid-area: sidebar;
    border: none;
    text-indent: 0px;
}

footer{
	margin: auto;
    grid-area: footer;
    border: solid;
    text-align: left;
	border-color: green;
	background-color: gold;
	width: 900px;
}

p {
    font-family: bgFontADYS;
    text-align: justify;
}

h1 {

}

div {
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border: none;
    display: flex;
}

img {
    display: flex;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none; 
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: green;
}

li.dropdown {
    display: inline-block;
	list-style-type: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 5%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: gold;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.ul {
	list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #38994d;
	color:red;
}

.li {
    float: left;
	list-style-type: none;
}

.slideshow-container {
    max-width: 90%;
    position: relative;
}

.slides {
    display: none;
}

.members {
    display: flex;
    height: 70px;
	/*width: 150px;*/
}

.header {
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border: none;
    display: block;
}

.menu {
    display: list-item;
    padding-bottom: 10px;
}
.menu {
    float: left;
}

.content {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    background-color: white;
}

.footer {

}

/*@media screen and (max-width: 780px) {
    body{
        display: grid;
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 90%;
        grid-template-areas: 
            "header"
            "menu" 
            "content" 
            "footer";
    }
    nav {
        grid-area: menu;
        border: none;
        display: list-item;
        width: 70%;
        padding-bottom: 10px;
    }
    nav .ul{
        width: 100%;
    }
}*/
