body{
  margin: 0px;
}

#projects{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

input{
  font-size: 25pt;
}

button{
  font-size: 15pt;
  transition: all 0.3s;
  text-align: center;
  display: inline-block;
  border: none;
  border-radius: 4px;
  padding: 5px;
}

button:hover{
   -moz-box-shadow: inset 0 0 10px #000000;
   -webkit-box-shadow: inset 0 0 10px #000000;
   box-shadow: inset 0 0 10px #000000;
}
/* nav bar */
ul {
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  font-family: "Griffy", cursive;

}

li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 10px;
  background-color: #f44286;
  height: 30px;
  font-size: 18pt;
  transition: background 0.8s;
}

li a:hover {
  background-color: white;
  color: black;
}

#nav {
  opacity: 0.5;
  text-align: center;
  position: fixed;
  width: 100%;
  background-color: #f44286;
}
/* end of nav bar */
#home{
  text-align: center;
  background-color: #3ad6f2;
  font-family: "Montserrat", sans-serif;
  transition: background 1s;
}

#home:hover{
  background-color: #ff4c4c;
}

#hideprojects{
   cursor: pointer;
   margin-bottom: 15px;
}

p{
  font-size: 25px;
  text-align: center;
}

img{
  border-radius: 25px;
  display: block;
  width: 800px;
  height: 450px;
  margin: auto;
  transition: all 1s;
}

img:hover{
  box-shadow: 6px 8px 9px grey;
}

.projdesc{
  background-color: #72ffcb;
  border: solid black 1px;
}

#date{
  font-size: 20px;
}

h5{
  margin: 0px;
}

h3{
  margin: 0px;
}

a{
    color: #000000;
    text-decoration: none;
}
