.section-hero {
  background-image: url('../images/hero-background.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: white;
  /* padding: 200px 200px 0 200px; */
  padding-top: 100px;
}

.button-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  border: none;
  outline: none;
}

@media (min-width: 576px) {
  .button-group {
    justify-content: flex-start;
  }
}

.section-hero h1 {
  font-family: 'Sequel Sans Book Disp', sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 70px;
  text-align: center;
  letter-spacing: 4px;
  animation: fadeInUp 0.4s ease-in-out;
  animation-fill-mode: both;
}

.section-hero p {
  font-family: 'Sequel Sans Book Body', sans-serif;
  font-size: 16px;
  line-height: 36px;
  padding: 5px 30px;
  background-color: rgba(0,0,0,0.2) !important;

  animation: fadeInUp 0.4s ease-in-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  
  --b: 1px;   /* thickness of the border */
  --c: white;   /* color of the border */
  --w: 5px;  /* width of border */

  border: var(--b) solid #0000; /* space for the border */
  --_g: #0000 90deg,var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background:
    conic-gradient(from 90deg  at top    var(--b) left  var(--b),var(--_g)) 0    0    / var(--_p),
    conic-gradient(from 180deg at top    var(--b) right var(--b),var(--_g)) 100% 0    / var(--_p),
    conic-gradient(from 0deg   at bottom var(--b) left  var(--b),var(--_g)) 0    100% / var(--_p),
    conic-gradient(from -90deg at bottom var(--b) right var(--b),var(--_g)) 100% 100% / var(--_p); 
}

.section-hero button {
  align-self: flex-start;
  animation: fadeInLeft 0.8s ease-in-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

@media (min-width: 576px) {
  .section-hero {
    padding-top: 200px;
  }

  .section-hero h1 {
    text-align: left;
  }
}