/*TITLE AND NAVEBAR*/
.title {
    display: block;
    z-index: 2;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    padding-top: 150px;
}
#navbar {
    overflow: hidden;
    background-color: #333;
    background-image: url("home.page/chalkboard.jpg");
    border-bottom: 5px solid #fff5ee;
    border-top: 5px solid #fff5ee;
    z-index: 30;
}
    /* Navbar links */
#navbar a {
    float: right;
    display: block;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}
    /*Navbar buttons*/
.button {
    color: #fff5ee;
    font-weight: bold;
    -webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}
.button:hover {
    background-color: #fff5ee;
    color: #A0522D;
	
}
a:link {
  text-decoration: none;
}
a:visited {
    color: #fff5ee;
    text-decoration: none;
}

/*Main Content*/
body {
    background: #222222;
    background-image: url("home.page/chalkboard.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 100% center;
    position: relative;
    color: #fff5ee;
    font-family: 'Mukta', sans-serif;
}

/* gallery properties */
.gallery {
    padding: 50px;
       
}
.gallery img {
    margin: 15px;
    transition: 1s;
    width: 200px;
    border-radius: 25px; 
    border: 2px solid #fff5ee;
}
.gallery img:hover {
    filter: grayscale(100%);
    transition: 1s;
}

/* demo properties */
.videos {
  padding-top: 10px;
    display: block;
    justify-content: center;    
    width: 1000px;
    margin-right: auto;
    margin-left: auto;    
}
iframe {
    margin-bottom: 2em;
    margin-top: 2em;
}
.border {
    width: 960px;
    border-bottom: 5px solid #fff5ee;
}
h1 {
    text-align: center;
    font-size: 8em;
    margin: auto;
}
.arrow {
    float: left;
}
.copyright {
    padding-top: 3em;
}