/* Colour Scheme: */
/* #1e6262 */
/* #2d767f */
/* #b4f1f1 */
/* #ecfffb */
/* Colour Scheme: */
/* #1e6262 */
/* #2d767f */
/* #b4f1f1 */
/* #ecfffb */
/** PARALLAX EFFECT **/
/* Extended and modified from Keith Clark (https://keithclark.co.uk/articles/pure-css-parallax-websites/) */
.parallax {
  -webkit-perspective: 1px;
          perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.parallax__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.parallax__layer--base {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.content {
  text-align: center;
  color: #FFF;
  background-color: #2d767f;
  margin-top: 100vh;
  padding: 35px;
  -webkit-box-shadow: 0.5px 0.5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0.5px 0.5px 10px rgba(0, 0, 0, 0.5);
}

.parallax__layer--deep {
  -webkit-transform: translateZ(-2px) scale(3);
          transform: translateZ(-2px) scale(3);
  padding: 150px;
  text-align: center;
}

.parallax__group {
  position: relative;
  height: 100vh;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/** GLOBAL **/
html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #2d767f;
  font-family: 'Ubuntu', sans-serif;
  scroll-behavior: smooth;
}

/** HEADERS AND TEXT **/
h1 {
  color: #ecfffb;
  text-transform: uppercase;
  font-size: 5rem;
  display: inline-block;
  vertical-align: middle;
}

h2 {
  color: #ecfffb;
  text-transform: uppercase;
  font-size: 2rem;
  opacity: 0.6;
  margin-top: -25px;
}

h3 {
  font-size: 22px;
  text-transform: capitalize;
}

p {
  font-size: 18px;
}

/** CONTAINERS **/
.flex-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.content-container {
  width: 80em;
  max-width: 80%;
  margin: auto;
}

/** ICONS **/
.icon {
  opacity: 0.6;
  margin: 10px;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  color: #ecfffb;
}

.icon:hover {
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

/** FOOTER **/
#footer {
  position: relative;
  color: #ecfffb;
  text-align: center;
  left: 50%;
  margin: 0 auto;
  bottom: 0;
  margin-top: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.6;
}

/** TEXT LINK - NOT FULLY FUNCTIONAL AT THE MOMENT **/
.text-link {
  font-weight: bold;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: white;
  -webkit-transition: opacity 300ms ease 0ms;
  transition: opacity 300ms ease 0ms;
}

.text-link::after {
  -webkit-transition: width .5s ease, background-color .5s ease, left .5s ease;
  transition: width .5s ease, background-color .5s ease, left .5s ease;
}

.text-link:hover::after {
  width: 100%;
  left: 0;
  background: #000000;
}

/** SCROLL INDICATOR **/
#scroll-arrow {
  width: 0;
  left: 50%;
  bottom: 0;
  position: fixed;
  margin-left: -20px;
  border-top: 10px solid #ecfffb;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  -webkit-animation: indicate 2s linear infinite;
          animation: indicate 2s linear infinite;
}

#scroll-arrow::before {
  width: 80px;
  display: block;
  position: absolute;
  text-align: center;
  font: .75em 'Arial';
  bottom: 25px;
  left: -40px;
}

@-webkit-keyframes indicate {
  0% {
    bottom: 3%;
    opacity: 0.6;
  }
  50% {
    bottom: 1%;
    opacity: 0.6;
  }
  100% {
    bottom: 3%;
    opacity: 0.6;
  }
}

@keyframes indicate {
  0% {
    bottom: 3%;
    opacity: 0.6;
  }
  50% {
    bottom: 1%;
    opacity: 0.6;
  }
  100% {
    bottom: 3%;
    opacity: 0.6;
  }
}

/*** FORM ***/
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 400px;
}

.email, .message {
  width: 400px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ecfffb;
}

.email:focus, .message:focus {
  outline: none;
  -webkit-box-shadow: 0.5px 0.5px 1.5px rgba(0, 0, 0, 0.2);
  box-shadow: 0.5px 0.5px 1.5px rgba(0, 0, 0, 0.2);
}

.email {
  height: 30px;
  margin: 10px 30px;
}

.message {
  height: 200px;
  margin: 30px 30px;
}

input, textarea {
  padding-left: 8px;
  border-radius: 4px;
}

textarea {
  padding-top: 8px;
  border-radius: 4px;
}

button {
  padding: 8px 48px;
  border: 2px solid white;
  border-radius: 4px;
  background: #2d767f;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

button:hover {
  background-color: #418d97;
  cursor: pointer;
}

/** 404 PAGE **/
.error-text, .error-text-2 {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.error-text {
  top: 40%;
}

.error-text-2 {
  top: 60%;
  font-size: 20px;
  font-weight: bold;
  border: none;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: white;
  -webkit-transition: opacity 300ms ease 0ms;
  transition: opacity 300ms ease 0ms;
  color: white;
  opacity: 0.6;
}

.error-text-2:hover {
  opacity: 1;
}

/** RESPONSIVENESS **/
/* Small devices (portrait phones, 576px and below) */
@media (max-width: 576px) {
  .content-container {
    max-width: 90%;
  }
  h1 {
    font-size: 3.5rem;
  }
  p {
    font-size: 16px;
  }
  form {
    max-width: 350px;
  }
}
/*# sourceMappingURL=style.css.map */