:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --red: #BA0C2F;
  --grey: #767779;
  --light-grey: #D9D9D9;
}

.body-wrapper {
  background: white;
  width: 100%;
  height: 100vh;
  font-family: "Open Sans Neue", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tips-and-weather-container {
  width: 100%;
  color: var(--grey);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 40px;
}
.tips-and-weather-container h3 {
  color: var(--red);
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 30px;
  line-height: 1em;
  padding-bottom: 20px;
}
.tips-and-weather-container .zoom-tips {
  max-width: 360px;
}
.tips-and-weather-container .zoom-tips .box {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tips-and-weather-container .zoom-tips .box .box-img {
  height: 80px;
  width: 120px;
  margin-right: 30px;
}
.tips-and-weather-container .zoom-tips .box .box-img img {
  height: 100%;
  width: auto;
}
.tips-and-weather-container .zoom-tips .box .box-text {
  font-size: 14px;
  line-height: 1.5em;
}
.tips-and-weather-container .weather-section {
  max-width: 360px;
  text-align: right;
}
.tips-and-weather-container .weather-section .weather-info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tips-and-weather-container .weather-section .weather-info-container .temp-info-container {
  margin-right: 26px;
}
.tips-and-weather-container .weather-section .weather-info-container .temp-info-container p {
  line-height: 1.4em;
}
.tips-and-weather-container .weather-section .weather-info-container .temp-info-container p:first-of-type {
  text-transform: capitalize;
}
.tips-and-weather-container .weather-section .weather-info-container .current-temp-container {
  text-align: left;
}
.tips-and-weather-container .weather-section .weather-info-container .current-temp-container p {
  font-size: 26px;
  line-height: 1.3em;
}
.tips-and-weather-container .weather-section .weather-info-container .current-temp-container h4 {
  font-size: 50px;
  font-weight: 600;
  line-height: 0.9em;
}

.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: url(zoom_bsu_bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  flex-grow: 3;
}
.thanks h1 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  color: black;
  font-size: 80px;
  z-index: 9;
  margin-bottom: 26px;
  text-align: center;
  line-height: 0.7em;
}
.thanks h1 span {
  color: #BA2031;
  line-height: 1.1em;
  font-style: italic;
}
.thanks .grey-bar {
  height: 50px;
  width: 90vw;
  max-width: 600px;
  background: var(--light-grey);
  position: absolute;
  top: 50px;
}
.thanks h2 {
  color: black;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  background: white;
}
.thanks p {
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  background: white;
}
.thanks a {
  text-decoration: none;
  color: var(--red);
}
.thanks a:hover {
  text-decoration: underline;
}

.news-section {
  padding-bottom: 30px;
  margin-top: -100px;
  z-index: 9;
  display: block;
}
.news-section .news-container {
  width: 96vw;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.news-section .news-container .article {
  width: calc((100% - 12px) / 4);
  background: var(--light-grey);
}
.news-section .news-container .article a.article-image-link {
  display: flex;
  background-size: cover;
  text-decoration: none;
  color: white;
  padding: 20px 26px;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.news-section .news-container .article a.article-image-link h4 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 26px;
  line-height: 1.1em;
  margin-bottom: 16px;
}
.news-section .news-container .article a.article-image-link p {
  font-size: 12px;
  flex-grow: 2;
  display: none;
}
.news-section .news-container .article a.article-image-link span {
  align-self: flex-end;
  font-weight: 800;
  font-size: 14px;
}
.news-section a:hover span {
  text-decoration: underline;
}

footer {
  background: black;
  display: none;
}

@media (max-width: 600px) {
  .tips-and-weather-container {
    flex-direction: column;
  }
  .tips-and-weather-container h3 {
    text-align: center;
  }
  .tips-and-weather-container .weather-info-container {
    justify-content: center;
  }

  .thanks {
    background: none;
  }

  .news-section {
    display: none;
  }
}

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