* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #000;
  color: #fafafa;
  overflow-x: hidden;
}

/*------------------------------------------ General Styling --*/

h1 {
  text-shadow: 1px 1px 4px #000;
}

a {
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

a:visited {
  color: #fafafa;
}

a:hover,
a:focus {
  color: #babafa;
  text-decoration: none;
}

p {
  color: #fafafa;
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  color: #fafafa;
}

button,
.link-button {
  padding: 0.3rem;
  border-color: transparent;
  background-color: #aa3333;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  margin-right: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 0 10px #000;
  white-space: nowrap;
}

button:hover,
button:focus,
.link-button:hover,
.link-button:focus {
  background-color: #fababa;
  color: #3333aa;
  box-shadow: 0 0 10px #aa3333;
}

.video-wrapper {
  text-align: center;
}

iframe {
  aspect-ratio: 16 / 9;
  width: 90%;
  max-width: 500px;
  height: auto;
}

.social-link {
  font-size: 1.5rem;
  margin: 0.5rem;
  color: #fafafa;
  text-align: center;
}

.social-link:hover,
.social-link:focus {
  color: #3333aa;
}

i {
  text-align: center;
}

span {
  white-space: nowrap;
}

/*------------------------------------------ HEADER --*/

header {
  position: fixed;
  height: 80px;
  width: 100%;
  padding: 12px 2rem;
  z-index: 1000;
}

.navbar-brand {
  font-size: 2rem;
}

/*------------------------------------------ Layout --*/

.page-wrapper {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100vh;
}

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  padding-bottom: 2rem;
}

.container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.column {
  width: 100%;
  padding: 0 1rem;
  align-items: center;
}

/*------------------------------------------------------- Footer -------*/

footer {
  color: #fafafa;
  padding: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
}

/*----------------------------------------------- Utility classes ------*/

.text-center {
  text-align: center;
}

.fade-bg {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px 0 12px 0;
}

/*----------------------------------------------- Media queries ------*/

@media screen and (min-width: 576px) {
  p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  button,
  .link-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  .column {
    width: 50%;
  }
  .social-link {
    font-size: 2rem;
    margin: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  
}
