@font-face {
  font-family: comfortaareg;
  src: url(../fonts/Comfortaa_Regular.ttf);
}
@font-face {
  font-family: enriquetareg;
  src: url(../fonts/Enriqueta-Regular.otf);
}
@font-face {
  font-family: league-spartan;
  src: url(../fonts/LeagueSpartan-Bold.otf)
}

body {
  font-family: comfortaareg;
}


/* FONTS */
.hero-heading {
  font-size: 8rem;
  color: white;
  font-family: league-spartan;
  letter-spacing: .5rem;
  border: solid .2rem;
  padding: 5rem;
  box-shadow: .4rem .4rem .8rem black;
}
@keyframes border-colorise {
  0% {
    border-color: blueviolet;
  }
  50% {
    border-color: yellow;
  }
  100% {
    border-color: blueviolet;
  }
}

.main-heading, .sub-heading {
  font-family: league-spartan;
  font-size: 4rem;
  text-align: center;
  color: rgb(231, 231, 231);
  background-image: linear-gradient(to right, #222, rgb(75, 75, 75) 45%, #222);
  padding: 5rem;
  line-height: 1.3;
  letter-spacing: .2rem;
  margin: 3rem auto;
  text-shadow: .2rem .2rem rgba(0,0,0, .5);
  position: relative;
}
.main-heading {
  margin-bottom: 5rem;
}
.main-heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: -.2rem;
  height: .5rem;
  width: 100%;
  animation: rainbow-border 10s infinite;
}
.main-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.2rem;
  height:.5rem;
  width: 100%;
  animation: rainbow-border 10s infinite;
}

.sub-heading {
  background-image: unset;
  text-shadow: unset;
  background-color: rgb(15, 15, 15);
  font-size: 3rem;
  color: black;
  padding: 3rem;
  text-align: left;
  width: fit-content;
  width: -moz-fit-content;
  margin: 3rem auto;
  animation: pulse 6s infinite;
}
.sub-heading:before {
  content: "";
  position: absolute;
  left: -.2rem;
  top: 0rem;
  height: 100%;
  width: .5rem;
  animation: rainbow-border-2 10s infinite;
}
.sub-heading:after {
  content: "";
  position: absolute;
  right: -.2rem;
  top: 0rem;
  height: 100%;
  width: .5rem;
  animation: rainbow-border-2 10s infinite;
}

/* FONT FORMATTING */
.paragraph {
  font-family: enriquetareg;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
sup {
  font-size: .8rem;
}
.main-content > .paragraph { color: #ddd }

.card__card-body > .paragraph {
  border-top: solid .1rem rgb(194, 194, 194);
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.295);
  padding: .3rem;
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* FORM FONT STYLES */
.form-content {
  font-size: 1.7rem;
}
legend {
  font-size: 2.2rem;
  color: rgb(137, 218, 255);
}
input[type=text], input[type=email], textarea {
  color: rgb(216, 216, 216);
  font-size: 1.7rem;
}

.btn {
  padding: 1rem;
}
.btn-send {
  width: max-content;
  outline: none;
  border: none;
  border: solid 1px rgb(216, 216, 216);
  background-color: rgba(0, 0, 0, 0.2);
  color: rgb(216, 216, 216);
  font-size: 1.5rem;
  margin: auto;
}
.btn-send:hover {
  background-color: rgba(255, 154, 154, 0.2);
  cursor: pointer;
  transition: all .25s;
}

.yellow-text { color: yellow;}

/* IMAGES */
.float-left {
  float: left;
  max-width: 200px;
  height: auto;
}