/* === Base reset === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
}

img {
  max-width: 100%;
  display: inline-block;
}

a {
  text-decoration: underline;
}

/* === Site styles === */
:root {
  --white: white;
  --dark-grey: #1a1b1f;
  --green: #1ba14a;
  --orange: #ffb400;
}

h1 {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'EB Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--dark-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'EB Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

p {
  margin-bottom: 10px;
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

a {
  color: var(--white);
  text-decoration: none;
}

.lock-page-body {
  background-color: var(--green);
  color: var(--dark-grey);
  display: flex;
}

.black-section-40-vw {
  background-color: var(--dark-grey);
  justify-content: flex-end;
  align-items: center;
  width: 40vw;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.logo-holder {
  flex: 0 auto;
  margin-left: 20px;
  margin-right: 20px;
}

.logo {
  max-width: 100%;
  max-height: 60vh;
  display: block;
  position: relative;
}

.right-section-60-vw {
  align-items: center;
  width: 60vw;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.text-holder {
  max-width: 40vw;
  margin-left: 20px;
  margin-right: 20px;
}

.h2-lock-page {
  margin-bottom: 40px;
}

.rich-text-block {
  color: var(--dark-grey);
}

.rich-text-block a {
  font-size: 26px;
  line-height: 32px;
}

.text-block {
  margin-bottom: 10px;
  margin-right: 10px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.copyright {
  margin-right: 10px;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  inset: auto 0% 0% auto;
}

@media screen and (min-width: 1920px) {
  .logo-holder {
    flex: 0 auto;
  }

  .logo {
    max-width: 100%;
    max-height: 60vh;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
    line-height: 34px;
  }

  .logo {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 22px;
    line-height: 24px;
  }

  .text-holder {
    max-width: none;
  }
}

@media screen and (max-width: 479px) {
  .lock-page-body {
    flex-direction: column;
    display: flex;
  }

  .black-section-40-vw {
    justify-content: center;
    width: 100vw;
    position: relative;
    inset: 0% 0% auto;
  }

  .logo-holder {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }

  .logo {
    width: 60vw;
  }

  .right-section-60-vw {
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    position: relative;
  }

  .text-holder {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .h2-lock-page {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 30px;
  }
}