:root {
  --white: white;
  --black: black;
  --crush-green: #335c4a;
}

.main-hero {
  background-image: linear-gradient(149deg, rgba(164, 118, 63, .37), rgba(255, 255, 255, .14)), url('../images/IMG_0268.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.main-hero.photo2 {
  background-image: linear-gradient(149deg, rgba(164, 118, 63, .37), rgba(255, 255, 255, .14)), url('../images/IMG_0301.jpg');
}

.main-hero.photo3 {
  background-image: linear-gradient(149deg, rgba(164, 118, 63, .37), rgba(255, 255, 255, .14)), url('../images/IMG_0326.jpg');
}

.main-hero.photo4 {
  background-image: linear-gradient(149deg, rgba(164, 118, 63, .37), rgba(255, 255, 255, .14)), url('../images/IMG_0026.jpg');
}

.main-logo {
  opacity: .88;
  width: 50vw;
}

.logo-float {
  background-image: radial-gradient(circle closest-side, rgba(184, 178, 178, .97) 11%, rgba(255, 255, 255, 0));
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
}

.links {
  margin-top: 30vw;
  position: fixed;
}

.main-button {
  opacity: .8;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #609c82;
  border-radius: 7px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 13px 23px 14px;
  font-family: brother-1816, sans-serif;
  font-size: 26px;
  font-weight: 400;
  box-shadow: 1px 7px 5px rgba(0, 0, 0, .27);
}

.main-button:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  .main-logo {
    width: 60vw;
  }

  .links {
    margin-top: 37vw;
  }

  .main-button {
    margin-left: 14px;
    margin-right: 14px;
  }
}

@media screen and (max-width: 767px) {
  .main-logo {
    width: 75vw;
  }

  .links {
    margin-top: 50vw;
  }

  .main-button {
    padding: 10px 16px;
    font-size: 22px;
  }
}

@media screen and (max-width: 479px) {
  .main-button {
    margin-left: 10px;
    margin-right: 10px;
    padding: 9px 14px;
    font-size: 17px;
  }
}


