header {
  background: url(../image/bg.png);
  background-size: cover;
  background-position: center;
  min-height: 1000px;
}

@media screen and (max-width: 670px) {
  header {
    min-height: 500px;
  }
}

a.brand-logo {
  font-family: "Pacifico", cursive;
  font-size: 20px;
  font-weight: bold;
}

a.brand-logo:hover {
  color: thistle;
}

img {
  border-radius: 4px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

img:hover {
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.section {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.tabs .indicator {
  background-color: #004768;
}
