/* global header styling */

body {
  font-family: 'Varela Round', sans-serif;
}

nav {
  background-color: crimson;
  width: auto;
}

nav ul {
  list-style-type: none;
  padding: 10px;
}

nav ul li {
  display: inline-block;
  margin-left: 50px;
}

a {
  color: black;
}

a:link {
  float: left;
  display: block;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  padding: 10px 10px;
}

nav li:hover {
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 4px 4px 0px;
}

h2 {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

form {
  text-align: center;
}

.container {
  margin: 35px auto;
  text-align: center;
  position: relative;
}

.blocks {
  text-align: center;
  margin: 10px;
}

button {
  background-color: crimson;
  border-radius: 8px;
  width: 80px;
  height: 30px;
  color: white;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.5);
}

form button:hover {
  background-color: white;
  color: black;
  transition: 550ms;
}

footer {
  background-color: crimson;
  height: 100px;
  margin-top: 20px;
  text-align: center;
  padding-top: 40px;
  font-weight: bold;
}

