body {
  font-family: 'Raleway', sans-serif;
  background-color: #6DA5A5;
  margin: 0;
  color: white;
}

p {
  font-size: 110%;
  font-weight: 900;
}

img {
  width: 350px;
}

form {
  padding: 15px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

input: not([type="radio"]), textarea {
  height: 45px;
  width: 100%;
  font-size: 30px;
}

input[type="submit"] {
  margin-top: 15px;
}

textarea {
  height: 250px;
  resize: none;
}

/* class selector */
.github-info a {
  text-decoration: none;
  color: white;
}

.github-info a: hover {
  color: darkgrey;
}

.github-info a: active {
  color: lightgrey;
}

.github-img {
  width: 25px;
}

.github-info {
  position: relative;
  top: 18px;
}

.no-padding {
  padding: 0;
}

.footer {
  background-color: black;
  width: 100%;
  height: 60px;
  margin-top: 15px;
}
.project-img {
  box-shadow: 2px 2px 10px grey;
}

/* multi-element selector*/
.navbar, .navbar-container, .navbar div {
  height: 100px;
}

.navbar {
  background-color: white;
  box-shadow: 0 5px 10px grey;
  width: 100%;
  position: fixed;
  top: 0;
  text-align: center;
}

/* descendent selector */
.navbar div {
  display: inline-block;
  width: 100px;
  margin: 0 -2px;
  text-align: center;
  padding-top: 35px;
  box-sizing: border-box;
}

/*pseudo-selector*/
.navbar div: hover {
  background-color: darkgrey;
}

.navbar div: active {
  background-color: lightgrey;
}


.center-text {
  text-align: center;
}

.page-video {
  /*centering trick!*/
  margin: 0 auto;
  display: block;
}

/* id selector */
#special-text {
  color: fuchsia;
}