* {
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: white;
}

body {
  margin: 0%;
  opacity: 1;
  transition: 3s opacity;
}

body.fade-out {
  opacity: 0;
  transition: none;
}

.pageTitle {
  font-size: 100px;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 40px;
}

.mainDiv {
  /* overflow: hidden; */
  width: 80vw;
  height: 40vw;
  margin: auto;
  display: none;
}

@media screen and (max-width: 1400px) {
  .mainDiv {
  }
}

.banner {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 25%;
  bottom: 25%;
  width: 80vw;
  height: 30vw;
  z-index: 10;
  /* background-image: linear-gradient(to bottom right, rgb(0, 183, 255) , rgb(0, 89, 141)); */
  border-radius: 10px;
  display: none;
  box-shadow: 4px 4px 8px black;
  animation: color-change 6s infinite;
}

@keyframes color-change {
  0% {
    background-color: rgb(0, 174, 255);
  }
  50% {
    background-color: rgb(0, 91, 175);
  }
  100% {
    background-color: rgb(0, 174, 255);
  }
}

.banner h1 {
  color: rgb(255, 255, 255);
  margin: 3vw;
  text-align: left;
  font-size: 4.5vw;
  text-shadow: 1px 1px 4px black;
  font-style: italic;
}

.banner h3 {
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 2.5vw;
  margin-left: 3.5vw;
  padding-top: 2vh;
  text-shadow: 1px 1px 4px black;
  font-style: italic;
}

#gotIt {
  background-image: linear-gradient(
    to bottom,
    rgb(255, 255, 255),
    rgb(197, 197, 197)
  );
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-style: italic;
  width: 16vw;
  height: 6vw;
  position: absolute;
  top: 70%;
  left: 4vw;
  font-size: 2.5vw;
  border: 2px solid black;
  border-radius: 4px;
  text-shadow: 2px 2px 4px rgb(174, 174, 174);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

#gotIt:hover {
  background-image: linear-gradient(
    to bottom,
    rgb(19, 224, 0),
    rgb(14, 168, 0)
  );
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  box-shadow: 4px 4px 16px rgb(0, 0, 0);
}



@media only screen and (max-width: 650px) {
  .banner {
    height: 70vw;
    width: 90vw;
    left: 5%;
    right: 5%;
  }
  .banner h1 {
    font-size: 9vw;
    text-align: center;
  }

  .banner h3 {
    font-size: 4vw;
    padding: 2rem;
    text-align: center;
    padding-top: 0vh;
  }

  #gotIt {
    width: 40vw;
    height: 10vh;
    top: 70%;
    left: 0vw;
    right: 0vw;
    margin: auto;
    font-size: 4vw;
  }
}

@media only screen and (max-width: 450px) {
    #gotIt {
      height: 6vh;
    }
  }

.row {
  margin-top: 60px;
}

.column {
  float: left;
  width: 50%;
  height: 40vw;
}

.col-1 {
  background-color: rgb(240, 240, 240);
}

.col-2 {
  display: block;
  overflow: hidden;
  padding: 0;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.swatch {
  width: 100%;
  height: 13.333333vw;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.colorText {
  text-align: right;
  color: black;
  padding-right: 3vw;
  display: none;
}

.whiteText {
  color: white;
}

.buttonBG {
  background-image: linear-gradient(
    to bottom,
    rgb(19, 224, 0),
    rgb(14, 168, 0)
  );
}

/* ===========================================
COLUMN 1 TEXT
=========================================== */
.letter-container {
  text-align: center;
  width: 100%;
}

.letter {
  font-size: 30vw;
  margin-top: 0px;
  margin-bottom: 0;
}

.text {
  text-align: center;
  font-size: 3vw;
  margin-top: -10%;
}

.text-hidden {
  font-size: 5vw;
  text-align: center;
  vertical-align: middle;
}

.NavBar {
  pointer-events: none;
  overflow: hidden;
  background: rgb(0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  -webkit-animation: moveNav 3s;
  animation: moveNave 3s;
}

@keyframes moveNavText {
  from {
    top: -10vw;
  }
  to {
    top: 0vw;
  }
}

.NavBar a {
  float: left;
  display: block;
  cursor: pointer;
  color: white;
  background: rgb(0, 0, 0);
  width: 3.84%;
  padding: 10px;
  padding-right: 14px;
  text-decoration: none; /* This gets rid of the underlines under the text on our navbar */
  font-family: Avant Garde, Helvetica;
  font-size: 2vw;
  text-shadow: 1px 1px 2px rgb(0, 195, 255);
  text-align: center;
  position: relative; /* This sets the text relative to its normal positioning, allowing us to use the animation below */
  -webkit-animation: moveNavText 2s;
  animation: moveNavText 2s;
}

.NavBar a:hover {
  background-color: #f4f4f4;
  color: black;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
}

@media screen and (max-width: 650px) {
  .NavBar a {
    width: 7.68%;
  }
}
