nav a {
	display: inline-block;
	padding: .3rem 1rem;
	color: lightpink;
	text-decoration: none;
	font-family: Avenir, Arial, sans-serif;
}
nav a:hover, nav a:focus {
	color:lightpink;
	background:#888;
}

nav a:not(:last-child) {
	border-right: 1px solid black;
}

body {
 background-image: url("../assets/chalkboard.jpg");
 background-repeat:no-repeat;
 background-size: cover;
 color:lightpink;
 text-align: center;
 font-family: montserrat;
 align-items: center;
}

.title{
  color:lightpink;
  font-size:xx-large;
  margin : 10px;
  padding: 20px;
}
 
.form-container{
  display: table;
  margin:auto;
  align-items: center;
  justify-content: center;
}

form{
  position:relative;
  box-shadow: 0 0 9px #ddd,
              0 0 1px #aaa,
              0 28px 25px -20px #888;
  color: #555;
  padding: 1em;
  width: 700px;
 }
  
h2{
  display:flex;
  justify-content: center;
  font-size:x-large;
  padding-bottom: 1em;

}

input{
  display: block;
  margin: 2em auto;
  width: 40%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bbb;
  color:lightgray;
  font-family: inherit;
  font-weight: bold;
  font-size: medium;
  transition: all .5s;
}
  
input:focus{
  box-shadow:inset 0 -2px 0 #ddd;
  padding-bottom: 2em;
  outline: 0;
}

::placeholder {
  color:lightpink;
  font-family: inherit;
  font-size:15px;
}
    
.button{
  background:grey;
  border-style:double;
  color:lightpink;
  cursor: pointer;
  margin: 2em auto;
  height: 40px;
  width: 200px;
  align-items: center;
}

.phrase {
  font-size: larger;
  color:lightpink;
  text-align: center;
}

.grid{
 display:inline-block;

}

ul {
  list-style-type: none;
  display:flex;
  width: 1200px;
  height: auto;
  float: left;
  box-sizing: border-box;
  padding: 0px 20px 20px 20px;
}

li{
flex: 1 1 auto;
}

footer{
  display: flex;
  flex-basis: 100%;
  justify-content: space-evenly;
  flex-direction: row;
  background:lightpink;
  opacity: 60%;
  color:#555;
  width: 140%;
  margin-left: -20%;
  margin-right: -20%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 5em;
  padding-top: 1em;
  margin-top: 2em;
  margin-bottom: 1.5em;
  }