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

html {
  font-size: 22px;
}

body {
  margin: 0;
  height: 100vh;
  font-family: "Darker Grotesque", sans-serif;
  color: white;
  background-color: #222222;
}

main {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  text-decoration: none;
  padding: 0.3em 3em;
  overflow: hidden;
  position: relative;
}

ul a .heading-container {
  overflow: hidden;
  height: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-top: 0.5em;
}

ul a p.primary,
ul a p.secondary {
  font-size: clamp(2rem, 2vw, 4rem);
  width: 100%;
  margin: 0;
  margin-left: 20px;
}

ul a p.primary {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

ul a p.secondary {
  -webkit-transform: translateY(40%);
          transform: translateY(40%);
}

ul a p.date {
  -webkit-transform: translateY(300%);
          transform: translateY(300%);
}

ul a .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3%;
  border-bottom: 1px solid white;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
/*# sourceMappingURL=main.css.map */