:root {
  --spacer: 3rem;
}

@media only screen and (max-width: 750px) {
  :root {
    --spacer: 2rem !important;
  }
}
* {
  -webkit-font-smoothing: antialiased;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body,
html {
  min-height: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 750px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  min-height: 100vh;
  background-color: #F0F0F0;
  color: #2E3236;
}
body.splash {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  padding: 2rem;
}
@media only screen and (max-width: 750px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: var(--spacer);
  }
}
.container .left {
  max-width: 500px;
  margin-right: var(--spacer);
}
@media only screen and (max-width: 750px) {
  .container .left {
    margin-right: 0;
  }
}
.container aside {
  max-width: 450px;
}
.container aside img {
  max-width: 100%;
}
@media only screen and (max-width: 750px) {
  .container aside img {
    max-width: 200px;
    margin-top: var(--spacer);
  }
}
.container .logo {
  max-width: 350px;
  margin-bottom: var(--spacer);
}
@media only screen and (max-width: 750px) {
  .container .logo {
    max-width: 150px;
  }
}

.tagline {
  font-size: 3rem;
}

.divider {
  padding: var(--spacer) 0;
  position: relative;
}
.divider:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 620px;
  height: 3px;
  background-color: #2E3236;
}
@media only screen and (max-width: 750px) {
  .divider:after {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  .divider {
    margin: var(--spacer) auto;
  }
}

.announcement {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map */
