@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* This file is a pasted demo snippet that supplies #gradient / #pattern for the hero.
   Its bare `h1 { font-size: 8rem; color: white; text-align: center }` belonged to that
   demo's own markup - on this site it hijacked every real <h1> (hero and breadcrumb
   titles), overriding the theme's own sizing. Scoped to the decorative block so it can
   only ever affect that, never a real page heading. */
#gradient h1,
#pattern h1 {
  font-size: 8rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
  text-align: center;
}

#pattern {
  position: absolute;
  top: -44px;
  left: -50px;
  right: 0;
  bottom: 0;
}

#gradient {
  background: radial-gradient(#ED3237, transparent 50%);
  width: 400px;
  height: 400px;
  position: absolute;
  top: -200px;
  left: -200px;
  transform: translate(200px, 200px);
}

/* -- youtube link styling -- */

.links {
  border-top: 1px solid #ffffff50;
  border-right: 1px solid #ffffff50;
  border-top-right-radius: 0.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.5rem;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  & > a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    &:hover {
      opacity: 1;
    }

    & > svg {
      margin-left: 0.5rem;
      flex-shrink: 0;
    }
    &:nth-child(1) > svg {
      stroke: #dd2d4a;
    }
    &:nth-child(2) > svg {
      stroke: #2b59c3;
    }
  }
}
