@font-face {
  font-family: "70s";
  src: url("../text/BrightDemo-axVxE.otf");
  src: url("../text/BrightDemo-axVxE.otf") format("woff"),
  url("../text/BrightDemo-axVxE.otf") format("opentype"),
  url("../text/BrightDemo-axVxE.otf") format("svg");
  }
.bg_parallax {
  position: relative;
  width: 100%;
  height: 50vh;
  background-image: url("../images/70s_tv.jpg");
  background-position: center;
  background-position: 50% 50%;
}
.inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  height: 100%;
  text-align: center;
}
h1 {
  font-family: "70s";
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 4rem;
  line-height: 1.2;
}
h3 {
  font-family: "70s";
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 2rem;
  line-height: 1.2;
}
p,
a {
  font-family: helvetica neue, helvetica, sans-serif;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1;
}

html {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,*:before,*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background-color: rgb(98, 130, 139);
  padding: 0;
  margin: 0;
  height: auto;
  width: 100%;
}

.page-content {
  max-width: 46rem;
  margin: clamp(2rem, .4rem + 7vw, 4rem) auto;
  padding: 0 5% 0 5%;
}

/****BUTTON CODE****/
b {
  position: relative;
  display: block;
  font-family: helvetica neue, helvetica, sans-serif;
  line-height: 1.15em;
  margin-top: -1.15em;
  top: 2.3em;
  font-size: 0.67em;
  font-weight: 400;
  letter-spacing: 0.025em;
  opacity: 0.75;
  text-align: center;
  }
  
  b span {
  font-size: 0.785em;
  font-weight: 400;
  opacity: 0.4;
  }
  
  #intro {
  width: 200px;
  margin: 100px auto 0;
  }
  
  .button {
    display: inline-block;
    text-decoration: none;
    position: relative;
    margin-top: 40px;
  }
  
  .button .bottom {
    position: absolute;
    left: 7px;
    top: 7px;
    width: 100%;
    height: 100%;
    background-color: #2acdc1;
    display: block;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
  }
  
  .button .top {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px 34px 22px 34px;
    border: 2px solid #04049d;
  }
  
  .button-dark .top {
    border: 2px solid #fff;
  }
  
  .button .top .label {
    font-family: sans-serif;
    font-weight: 600;
    color: #04049d;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
  }
  
  .button-dark .top .label {
    color: #fff;
  }
  
  .button:hover .bottom {
    left: 0;
    top: 0;
    background-color: #f3f3f3;
  }
  
  .button:hover .top .label {
    color: #2acdc1;
  }
  
  .button-border {
    position: absolute;
    background-color: #2acdc1;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
  }
  
  .button:hover .top .button-border-left,.button:hover .top .button-border-right {
    height: calc(100% + 2px);
  }
  
  .button:hover .top .button-border-top,.button:hover .top .button-border-bottom {
    width: calc(100% + 2px);
  }
  
  .button-border-left {
    left: -2px;
    bottom: -2px;
    width: 2px;
    height: 0;
  }
  
  .button-border-top {
    left: -2px;
    top: -2px;
    width: 0;
    height: 2px;
  }
  
  .button-border-right {
    right: -2px;
    top: -2px;
    width: 2px;
    height: 0;
  }
  
  .button-border-bottom {
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 2px;
  }