/*Set a common font for all elements as a base*/
html *{
  font-family: "Open Sans", sans-serif;
}

/*Set body background color to a light gray*/
body{
  background-color: #ecf0f1;
}
@font-face {
    font-family: 'EffloresceAntique';
    src: url('EffloresceAntique.ttf');
}
/*header styling*/
#header{
  width: 100%;
  text-align: center;
  background-color: #3498db;
  color:#fff;
  padding-bottom:20px;
}
#footer{
  width: 100%;
  text-align: center;
  background-color: #3498db;
  color:#fff;
  padding-top:20px;
  padding-bottom:20px;
}
#pageWrapper{
  width: 100%;
}
/*login and registration link styles*/
#userLinks{
  position: absolute;
  right:10px;
  top: 80px;
}
#mainLink{
  text-decoration: none;
  font-family: 'EffloresceAntique';
  color:#fff;
  font-size: 60px;
  padding-top: 0px;
}
#userLinks a{
  text-decoration: none;
  color:#fff;
  border: 5px solid #fff;
  height: 40px;
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align:middle;
  width: 70px;
  font-size: 20px
}
#userLinks a:visited{
  color:#fff;
}
#userLinks a:hover{
  text-decoration: underline;
  background-color: #1485d1;
}
#userLinks a:last-child{
  padding-right:none;
}

/*styles for the content wrapper*/
#contentWrapper{
  width:90%;
  margin: 10px auto;
  border-radius: 4px;
}
#content{
  background-color: #fff;
  padding:5px;
}

#nav{
  width: 100%;
  padding-bottom: 25px;
  text-align: center;
  background-color: #333;
  overflow: hidden;
}
#nav a{
  position: relative;
  top: 13px;
  padding: 14px 16px;
  text-decoration: none;
  margin-top: 10px;
  height:20px;
  color: #f2f2f2;
}
#nav a:hover{
  background-color: black;
}
#nav a:active{
}
#userLinks a:visited{
  color: white;
}

/*styles for the registration and login forms*/
#registrationForm {
  width: 500px;
  margin: auto;
}

#loginForm {
  width: 500px;
  margin: auto;
}
#mainPage{
  text-align: center;
  font-size: 36px;
}
#mainContent{
  font-size: 16px;
}
#indexPics{
  margin-left: 20%;
  margin-right: 20%;
}
#indexPics img{
  width: 25%;
}

#fancyTitle{
  text-align: center;
  font-family: "Garmond";
  border-top: 5px solid black;
  border-bottom: 5px solid black;
  font-size: 40px;

}
.itemContainer{
  text-align: center;
  border: 2px solid black;
  width: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: relative;
  margin-bottom: 5px;
}
.itemContainer a{
  color: black;
  width: 200px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 600;
  text-decoration: none;
  padding: 5px;
  border: 2px solid black;
  background-color: #3498db;
  margin-bottom: 10px;
}
.userContainer{
  text-align: center;
  border: 2px solid black;
  width: 25%;
  color: black;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: relative;
  text-decoration: none;
}
#userTitle {
  text-align: center;
  font-weight: 800;
}
#registrationForm{
  text-align: center;
}
#registrationForm h1{
  font-family: "Montserrat-Bold";
}
#registrationForm input{
  height: 40px;
  font-size: 18px;
  width: 245px;
  font-family: "Montserrat-Bold";

}
#registrationForm input[type=submit]{
  width: 225px;
  color: white;
  position: absolute;
  left: 49.9%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3498db;
  border: none;
}
