@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,700;1,900&display=swap");

:root {
  --black: #000000;
  --green: #699f56;
  --blue: #34566f;
  --grey: #959595;
  --grey2: #d8d8d8;
  --red: #aa4926;
  --orange: #cc7832;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
td,
tr,
th,
table,
div,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.bold {
  font-weight: bold;
}

.centralize-text {
  text-align: center;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

.header-container {
  height: 3.1em;
  background-color: var(--black);
}

.header-container .content-wrapper {
  flex-direction: row;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 0.5em;
}

.grid-1-2 {
  margin: 1em 0;
  max-width: 100%;
}

.content-box {
  margin: 1em 0;
}

.logo-container.left {
  display: flex;
}

.logo-container.right {
  margin-left: auto;
}

h1.logo,
.subtitle,
.logo-button-text {
  color: white;
}

h1.logo {
  margin-top: 0.3em;
  font-size: 1.66em;
  font-weight: 700;
}

.subtitle {
  position: absolute;
  top: 3.8em;
  left: 1.2em;
  font-size: 0.6em;
  font-weight: 300;
  font-style: italic;
}

.logo-button {
  background-color: var(--blue);
  display: inline-block;
  padding: 0.15em 1.1em;
  position: relative;
}

.logo-button .logo-button-text {
  font-size: 0.6em;
  position: relative;
  bottom: 0.2em;
  left: 0.4em;
  font-weight: bold;
}

.logo-button .logo-button-icon {
  top: 0.4em;
  left: 0.4em;
  position: absolute;
  width: 11px;
  height: 11px;
}

a.logo-button:hover {
  filter: brightness(85%);
}

.main-container {
  padding-top: 1em;
}

h2.text-title {
  font-size: 1.33em;
  font-weight: bold;
  color: var(--black);
  padding: 0.2em 0;
  margin-bottom: 0.3em;
  border-bottom: 1px solid var(--black);
}

.text-content {
  font-size: 0.95em;
  line-height: 1.6667em;
  font-weight: 500;
  text-align: left;
}

.text-content a {
  color: var(--blue);
  text-decoration: underline;
}

.text-content.centralize-text {
  text-align: center;
}

.code-segment {
  white-space: pre-wrap;
  padding: 0.5em;
  font-size: 0.9em;
}

.small-text {
  font-size: 0.85em;
  font-weight: 300;
}

.image-content {
  text-align: center;
}

.image-content img {
  width: 100%;
}

.buton-container {
  margin-top: 1.6em;
  text-align: center;
}

.centered-text-container {
  margin-top: 0.6em;
  text-align: center;
}

.buton-container button.button,
.buton-container a.button {
  width: 12.3em;
  height: 2.22em;
  margin-bottom: 1em;
  color: white;
  border: 0 none;
  cursor: pointer;
  display: inline-block;
  padding: 0.45em 0;
  box-sizing: border-box;
}

.buton-container button.button:hover,
.buton-container a.button:hover {
  filter: brightness(85%);
}

button.button.green,
a.button.green {
  background-color: var(--green);
}
button.button.blue,
a.button.blue {
  background-color: var(--blue);
}

button.button.unfilled,
a.button.unfilled {
  background-color: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-weight: normal;
  position: relative;
}
button.button.unfilled:hover,
a.button.unfilled:hover {
  border-color: var(--grey);
  color: var(--grey);
}

.button-icon {
  position: absolute;
  right: 0.9em;
  top: 0.45em;
}

.content-table {
  margin-top: 1.7em;
  width: 100%;
}

table,
td,
th,
tr {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}

.content-table td,
th {
  text-align: center;
  font-size: 0.9em;
}

.content-table th {
  padding: 1em 0;
}

.content-table tr td {
  padding: 0.8em 0em;
}
.model-owner {
  font-weight: 300;
  font-style: italic;
}

.content-table thead th {
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.content-table tbody td {
  border-bottom: 1px dotted var(--grey);
}

.rank-number {
  margin-bottom: 0.5em;
}

.content-table tbody td .label-date {
  font-size: 0.6em;
  padding: 0.2em 0.6em;
  color: white;
  background-color: var(--grey);
  border-radius: 1em;
  text-align: center;
}

.content-table tbody td .number {
  font-weight: bold;
}

.footer-container {
  margin-top: 2em;
  background-color: var(--grey);
  padding: 0.75em 0;
}

.footer-text {
  margin-left: auto;
  font-size: 0.6em;
  color: white;
}

.footer-text a {
  text-decoration: underline;
  color: white;
}

/* ------ RESPONSIVE STYLES ------ */

/* Phone */
@media (min-width: 450px) {
  .subtitle {
    position: relative;
    top: 2.5em;
    left: 0.6em;
  }
}

/* Tablet */
@media (min-width: 769px) {
  .content-wrapper {
    max-width: 769px;
    flex-direction: row;
  }
  .grid-1-2 {
    margin-right: 1em;
    width: 49%;
  }
  .grid-1-2:nth-child(2) {
    margin-left: 1em;
    margin-right: 0;
  }
  .subtitle {
    font-size: 0.85em;
    top: 1.5em;
  }

  .image-content img {
    width: 350px;
  }
}

/* Laptop */
@media (min-width: 960px) {
}

/* Desktop */

@media (min-width: 1140px) {
  .content-wrapper {
    max-width: 1020px;
    flex-direction: row;
  }
}
