* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



body {
	background: url() fixed;
	background-color: lightsteelblue;
    color: none;
    margin: 0;

}

nav {
    position: sticky;
    top: 0px;
    bottom: 0px;
    background-color: lightblue;
    width: 900px;
    font-size: x-large;
    text-align: center;
}

header {
    width: 100%;
    margin-top: 0px;
    padding: 0px;
}

#wrapper {
    width: 900px;
    
	box-shadow: 2px 2px 5px #6666;
}

#content {
    width: 850px;
    height: 100%;
    text-align: center;
    margin-bottom: 0px;
    font-size: 18px;

}

.menu  {
    align-items: right;
    justify-content: center;
    display: flex;
    font-weight: bold;
    padding: 2px;
}

div {
    background: lightblue;
    text-align: center;
    text-decoration: none;
    width: 900px;
    margin: 0px auto;
    padding: 0;
    
    

}

h1 {
    margin-top: 0;
}

h4 {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}

p {
    margin-top: 0;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    
}

.fb {
    text-decoration: none;
}







img {
    padding: 1.5% 1%;
    width: 0px auto;
}

.imp {
    text-align: left;
    font-size: x-small;
}

ul {
    display: flex;
    justify-content: center;
}

li {
    list-style: none;
    margin: 24px;
}

li a {
    text-decoration: none;
    color: darkslateblue;
}

li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: red;
    margin: auto;
    display: block;
}

li a:hover::after {
    width: 100%;
    transition: width 0.3s linear;
    margin-top: 0px;
}

li a:hover {
    color: red;
}

footer {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: larger;
    list-style: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: darkgray;

}

.footer {
    text-align: center;
    display: flex;
    justify-content: center;
    background: darkgray;
    
}



@media screen and (max-width: 620px){
	#wrapper {
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin: 0px auto;
    padding: 1.5% 1%;
	}
    header {
        width: 100%;
        height: 100%;
    }
    #content {
        width: 100%;
    }
	

    nav {
        width: 100%;
        background: lightblue;
    }
    img {
        width: 100%;
        height: 100%;
        margin: 0px auto;
        padding: 1.5% 1%;
    }
	
}