body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  width: 100wh;
  height: 90vh;
  color: #fff;
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
  background: linear-gradient(-90deg, #2b5876, #4e4376);
  background-size: 800% 800%;
  -webkit-animation: Gradient 30s ease infinite;
  -moz-animation: Gradient 30s ease infinite;
  animation: Gradient 30s ease infinite;
  -webkit-font-smoothing: antialiased;
}

.row2 a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}

.row2 a:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='white' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 20%;
  border-bottom: 0;
  padding-bottom: 0.3em;
  text-decoration: none;
  color: #fff;
}

p {
  font-size: 1.375rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding: 0;
  list-style-type: none;
}

/* ul li {
  list-style-type: none;
} */

li {
  font-size: 1.375rem;
  font-weight: normal;
}

.container {
  margin-top: 120px;
  margin-bottom: 80px;
}

.greeting {
  font-size: 6.75rem;
  font-weight: 600;
  letter-spacing: 0;
  overflow: hidden;
  border-right: 0.15em solid white;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.greeting-subtext {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 auto;
}

.row2 {
  margin-top: 80px;
}

.row3 {
  margin-top: 40px;
}

.CTA {
  text-align: center;
}

.CTA a {
  padding: 1em 2em;
}

.CTA a button {
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  border-color: white;
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  color: white;
  padding: 15px 32px;
  font-family: sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 17px;
}

.CTA a button:hover {
  transition: 0.3s;
  background-color: white;
  color: black;
}

.links {
  text-align: center;
}

.links a img {
  height: 50px;
}

.links a img:hover {
  transform: scale(1.25, 1.25);
}

/* Animations */

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

/* Responsive stuff */

@media only screen and (max-width: 800px) {
  .container {
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1.5em;
  }
  .CTA a {
    display: block;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
  .container {
    padding-left: 3em;
    padding-right: 3em;
    padding-bottom: 3em;
  }
}

@media only screen and (max-width: 1200px) {
  .greeting {
    font-size: 4rem;
    animation: none;
    border: none;
    white-space: normal;
    margin: none;
    overflow: auto;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .greeting { 
    font-size: 6rem;
  }
}
