html,
body {
  color: #121212;
  background-color: white;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern';
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  font-family: GuardianTextEgyptian,Guardian Text Egyptian Web,Georgia,serif;
  font-size: 16px;
}

.body-with-rules {
  padding: 10px 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.table {
  height: auto;
}

.table.truncate {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.top-container {
  display: flex;
  column-gap: 20px;
  margin-bottom: 20px;
}

.top-container .tag {
  font-size: 16px;
}

.photo-wrapper {
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 100%;
  margin-bottom: 8px;
}

.trump .photo-wrapper,
.pence .photo-wrapper {
  background-color: #F2B6BB;
}

.biden .photo-wrapper {
  background-color: #A3D9EF;
}

.row {
  position: relative;
  display: flex;
  margin: 16px 0 20px 0;
  line-height: 1.4;
  column-gap: 20px;
}

.row:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}

.row:nth-of-type(7):after {
  display: none;
}

.row .trump,
.top-container .trump,
.row .biden,
.top-container .biden,
.row .pence,
.top-container .pence {
  width: 33%;
}

.tag {
  display: block;
  font-family: "Guardian Text Sans Web", Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 2px;
  font-size: 14px;
}

.tag.trump,
.tag.pence {
  color: #CC0A11;
  width: 100%;
}

.tag.biden {
  color: #056DA1;
  width: 100%;
}

h1 {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

h2 {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.source {
  font-family: "Guardian Text Sans Web", Helvetica, Arial, sans-serif;
  padding-top: 10px;
  text-align: left;
  font-size: 12px;
  line-height: 15px;
  color: #767676;
}

.truncate-container {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.fade-button {
  background-color: #121212;
  color: #fff;
  border: none;
  font-family: "Guardian Text Sans Web", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 26px;
  padding: 13px 20px;
  transform: translateY(180px);
  z-index: 1;
  position: relative;
  transition: background-color .15s ease-in-out;
}

.fade-button svg {
  fill: #fff;
  height: 20px;
  width: 20px;
  margin-right: 5px;
  margin-top: -5px;
  transform: translateY(4px);
}

.fade {
  height: 200px;
  background: linear-gradient(0deg,#fff,hsla(0,0%,100%,0));
}

@media(max-width: 500px) {

  .row {
    flex-direction: column;
  }

  .tag {
    margin-top: 10px;
  }

  .row .trump,
  .top-container .trump,
  .row .biden,
  .top-container .biden,
  .row .pence,
  .top-container .pence {
    width: 100%;
  }
}


@media(max-width: 375px) {

.photo-wrapper {
    height: 80px;
    width: 80px;
  }

}