#mainpage {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background: white;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.h1, h1 {
  color: white;
  font-size: 9vh;
  line-height: 100%;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 5vh;
  text-align: center;
}

.sub-title {
  margin: 50px auto;
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 6px 10px;
  color: white;
  border: 4px solid white;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}

a {
  color: white;
}

.container {
  display: table;
  padding-top: 80px;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

a:hover {
  color: white;
}

#polygon {
  clip-path: #polygon(0 0, 80% 0, 55% 95%, 0% 100%);
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: -1;
  background: linear-gradient(-90deg, #F60178, #354290);
  background-size: cover;
  overflow: hidden;
  padding-bottom: 2rem;
}

#polygon2 {
  clip-path: polygon(64% 0, 100% 0, 100% 100%, 42% 100%);
  min-width: 100%;
  position: absolute;
  z-index: -1;
  background: white;
  min-height: 100vh;
}

.goatlogo {
  width: 200px;
}

@media (min-width: 768px) {
  #polygon {
    height: 100vh;
  }
}

