* {
  box-sizing: border-box;
}
html, body {
  min-height: 100vh;
  min-width: 320px;
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  color: #fff;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
}

body a {
  color: #fff;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: #DD6B19;
  text-underline-offset: 3px;
}
body a:hover, body a:focus {
  text-decoration-color: #42B89A;
}

#home-wrapper {
  height: 100vh;
  width: 100vw;
  display: grid;
  place-content: center;
}
#home-wrapper .logo {
  width: 50vw;
  max-width: 600px;
  height: auto;
}

#site-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100vh;
}
#left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

#right-column {
  width: 100%;
}
#header-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  > div {
    width: 50%;
  }
}
#left-column img {
  object-fit: cover;
  max-width: 100%;
}
#videos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

p {
  font-size: 1rem;
}

.logo {
  max-width: 100%;
}

.content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.5rem;
}
.content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.content hr {
  margin: 1rem 0;
  border: none;
  border-top: 3px dotted #DD6B19;
}

.content blockquote {
  margin: 2.5rem 0;
}

.content blockquote q {
  font-family: "Nixie One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
}
.content blockquote cite {
  display: block;
  font-size: 1rem;
  margin: .5rem 0;
  font-style: normal;
}
.content figure {
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
.content figure figcaption {
  font-size: .875rem;
  margin: .5rem 0;
}

@media (min-width: 480px) {
  #videos {
    flex-direction: row;
    .half {
      width: 50%;
    }
    .one-third {
      width: 33.3%;
    }
    .two-third {
      width: 66.6%;
    }
  }
}

@media (min-width: 768px) {
  #site-wrapper {
    flex-direction: row;
  }
  #left-column {
    width: 40%;
    position: sticky;
    top: 0;
    height: 100vh;
  }
  #right-column {
    width: 60%;
  }
}

@media (max-width: 479px) {
  #header-logo {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    > div {
      text-align: right;
      width: 100%;
    }
  }
  
  .content blockquote {
    margin-top: 0rem;
  }
}