* {
  box-sizing: border-box;
  font-family: "oxygen", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0px;
  padding: 0px;
}

:root {
  --color-background: #030207;
  --color-white: #fff;
  --color-blue: #1474b4;
}

body {
  background-color: var(--color-background);
  color: var(--color-white);
}

a {
  color: var(--color-blue);
}

.hero {
background: linear-gradient(rgba(0,0,0,0.1), var(--color-background));
position: relative;
min-height: 100vh;
}

.hero__background {
  object-fit: cover;
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: -10;
}

.hero__foreground {
  text-align: center;
  padding-top: 40vh;
  color: var(--color-white);
}

.hero__title {
  font-size: 5rem;
  font-weight: 300;
}

.hero__text {
  margin-top: 2rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

.section {
  overflow: hidden;
  padding: 0 8rem;
  text-align: center;
}

.section__title {
  font-size: 3rem;
  font-weight: 300;
  margin: 4rem auto;
}

.section__img,
.section__img-inline {
  width: 100%;
  border-radius: .75rem;
  box-shadow: 0 1rem -0.5rem rgba(20, 116, 180, 0.25);
  object-fit: cover;
  object-position: top;
  position: relative;
  max-height: 30rem;
}

.section__text,
.section__text-inline {
  font-size: 1.25rem;
  line-height: 1.75;
  margin: 4rem auto;
}

.section__img-inline {
  border-top-left-radius: 4rem ;
  border-bottom-right-radius: 4rem;
  float: left;
  margin-right: 4rem;
  margin-bottom: 2rem;
  height: 25rem;
  width: 20rem;
}


.section__text-inline {
  text-align: left;
  margin-top: 6rem;
}


.section__text-inline > p {
  margin-top: 1.5rem;
}

#hangouts img {
object-position: center;
}

.gallery__img {
  border-radius: .75rem;
  height: 16rem;
  width: 16rem;
  object-fit: cover;
  transform: rotate(-2deg);
}

.gallery__img-wrapper {
  position: relative;
  display: inline-block;
}
.gallery__img-wrapper + .gallery__img-wrapper {
  margin-left: 3rem;
  margin-top: 3rem;
}

.gallery__img-wrapper:nth-child(even) > .gallery__img {
  top: 1rem;
  transform: rotate(2deg);
}

.gallery__img-wrapper::after {
  content: '';
  background-color: rgb(228,26 , 26);
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  top: 0.25rem;
  right: 1.5rem;
  border-radius: 999px;
}

.gallery__img-wrapper:nth-child(even)::after {
  left: 1.5rem;
}

.footer {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
}