.navbar {
  overflow: hidden;
  background-color: black;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a.right {
  float: right;
}

.navbar a:hover {
  background-color: #a6886d;
  color: black;
}

.header {
  padding: 80px;
  text-align: center;
  background: white;
  color: black;
}

.header h1 {
  font-size: 46px;
}

.responsive {
  width: 100%;
  height: auto;
}

body {
  font-family: Raleway, Montserrat, sans-serif;
  font-size: 18px;
  text-align: center;
}

h1 {
  font-family: Great Vibes, cursive;
  text-align: center;
  font-size: 46px;
  color: #bf0404;
  line-height: 40px;
}

h2 {
  font-family: Raleway, sans-serif;
  text-align: center;
  font-size: 25px;
  color: black;
  line-height: 30px;
}

h3 {
  font-family: Montserrat, sans-serif;
  text-align: center;
  font-size: 20px;
  color: #f90;
  line-height: 40px;
}

.button {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #bf0404;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #a6886d;
}

.button:hover {
  background-color: #bf0404;
}

.button:active {
  background-color: #bf0404;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.footer {
  padding: 20px;
  text-align: center;
  background: #a6886d;
}

@media screen and (max-width: 480px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

