@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700');

/*div {
  border: 1px solid black;
}*/

body {
  margin: 60px auto;
  width: 70%;
  font-family: 'Source Sans Pro', sans-serif;
}

nav {
  margin-bottom: 50px;
}

nav ul, footer ul {
  padding: 0px;
  list-style: none;
  text-align: center;
}

nav ul li, footer ul li {
  display: inline-block;
  margin: 0 25px 15px 25px;
  min-width: 40px;
  font-weight: 300;
}

.blurb {
  max-width: 85%;
  margin: 0 auto 40px auto;
  text-align: justify;
}

.front-img {
  border-radius: 50%;
  max-width: 50%;
  min-width: 250px;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
}

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

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 3.5em;
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
}

p {
  font-size: 1em;
  line-height: 1.4em;
  color: #333;
}

.post-title {
  font-size: 1.4em;
  color: #999;
}
footer {
  border-top: 1px solid #d5d5d5;
  margin-top: 50px;
  font-size: .8em;
}

ul.posts { 
  margin: 20px auto 40px; 
  font-size: 1.2em;
}

ul.posts li {
  list-style: none;
}

/* MUSIC */

.music {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #d5d5d5;
}

.music-block {
  display: block;
  width: 250px;
  margin: 20px;
  text-align: center;
}

.music-block p {
  font-size: 0.8em;
  line-height: 1.5;
}

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; }
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* COMPUTER */

.computer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.computer-block {
  display: block;
  width: 25%;
  min-width: 150px;
  margin: 20px;
  text-align: center;
}

.computer-block p {
  font-size: 0.8em;
  line-height: 1.5;
}

.computer-block img {
  height: 125px;
  width: 125px;
  border-radius: 10px;
  opacity: 0.8;
}

.computer-block img:hover {
  opacity: 1;
}

/* CONTACT */

#contact-form {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px
}

#contact-form textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact-form input[type="submit"] {
  cursor: pointer;
  width: 100px;
  border: none;
  border-radius: 20px;
  background: #4CAF50;
  color: #FFF;
  margin: 0 auto 5px auto;
  padding: 10px;
  font-size: 15px;
}

#contact-form input[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact-form input[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}