:root {
  --blue: #0a94c8;
  --lighter-blue: #addbec;
  --yellow: #ffb603;
  --red: #ff2f03;
  --dark: #233044;
  --grey: #454963;
  --white: #fff;
  --offwhite: #fafafa;
  --title: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --summary: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --headings: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/********************* Patch-Note *********************/

.patchnote-border-content {
  border: 0.1rem solid;
  border-radius: 0;
  border-color: gray;
  border-radius: 0.375rem;
}

.patchnote-weapon {
  display: flex;
  align-items: center;
}


/********************* General *********************/

body {
  font-family: var(--summary);
  font-weight: 300;
  color: var(--dark);
  background-color: var(--white);
}

#content {
  position: relative;
  min-height: 95vh;
}

a {
  text-decoration: underline var(--grey);
  color: var(--dark);
}

strong {
  font-weight: 600;
}

table {
  font-family: var(--summary);
}
thead {
  background-color: whitesmoke;
  border-bottom-color: var(--dark);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
table th,
table td {
  padding-right: 40px;
  padding-left: 10px;
}
table th {
  font-size: large;
}
table td {
  font-size: medium;
}

.serif {
  font-family: var(--summary);
  color: var(--grey);
}

.card {
  border-radius: 0.375rem;
  background: var(--offwhite);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08), 0 0 6px rgba(0, 0, 0, 0.05);
  transition: 1s transform cubic-bezier(0.155, 1.105, 0.295, 1.12),
    1s box-shadow, 1s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
  /* padding: 14px 80px 18px 36px; */
  cursor: pointer;
  font-family: var(--headings);
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.card background-color {
  border-radius: 0.375rem;
}
.card-title {
  font-weight: 600;
  font-family: var(--title);
}
.card-date {
  font-weight: bold;
  color: var(--grey);
  font-size: small;
}
.card-title-white {
  color: #fff;
}
.card-footer {
  background-color: var(--white);
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}
.top-highlight:hover {
  border-top-color: var(--blue);
  border-top-width: 2px;
}
.card h3 {
  font-weight: 600;
}
.card-right {
  text-align: right;
  color: #fff;
}

@media (max-width: 990px) {
  .card {
    margin: 20px;
  }
}

blockquote {
  font-family: var(--summary);
  padding: 10px 10px 1px 30px;
  background-color: ghostwhite;
  border-left-width: 5px;
  border-left-color: lightgray;
  border-left-style: solid;
}
code {
  color: var(--grey);
  font-size: smaller;
}
.btn-link {
  text-decoration: none;
  border-bottom-width: 1px;
  border-radius: 0px;
  color: var(--blue);
  vertical-align: middle;
}
.btn-link i {
  padding-right: 5px;
}
.btn-link:hover {
  text-decoration: underline;
  transition: 0.6s;
  transform: translate(0, 5px);
  color: var(--blue);
}
.status {
  font-weight: lighter;
  color: green;
  font-size: small;
}

/********************* Navbar *********************/

.navbar {
  background: var(--white) !important;
  color: var(--dark);
  font-family: var(--title);
}
.navbar-nav .nav-item .nav-link {
  color: var(--grey);
  font-weight: 300;
  transition: color 1s;
  display: block;
  position: relative;
  margin-left: 1em;
  margin-right: 1em;
  padding: 0.2em 0;
}
/* Fade in */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: var(--red);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.nav-link:hover::after,
.nav-link:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}

/********************* Home *********************/

.name {
  font-family: var(--title);
  font-weight: 800;
}

.bio {
  max-width: 750px;
  font-weight: 200;
  font-family: var(--summary);
}
.heading {
  font-weight: 400;
  color: var(--grey);
  font-family: var(--headings);
  text-decoration: none;
}
.heading:hover {
  transition: 0.6s;
  color: var(--blue);
  cursor: pointer;
}
.subheading {
  color: var(--grey);
  font-size: 22px;
  padding-bottom: 10px;
}
.tag-badge {
  background-color: var(--blue);
  font-family: var(--headings);
  font-weight: 400;
}
.see-all {
  text-decoration: none;
  border-bottom-width: 1px;
  border-radius: 0px;
  color: var(--blue);
  border-bottom-color: gainsboro;
}
.see-all:hover {
  transition: 0.6s;
  transform: translate(0, 5px);
  border-bottom-color: var(--blue);
  color: var(--blue);
}

/********************* List *********************/

/* ---- button-filters ---- */
.button {
  font-weight: 200;
  display: inline-block;
  padding: 0.15em 0.5em;
  background: var(--white);
  border: 2px;
  margin-bottom: 10px;
  margin-right: 3px;
  color: var(--grey);
  cursor: pointer;
  text-transform: capitalize;
  font-size: small;
}
.button:hover {
  background-color: var(--lighter-blue);
  color: var(--dark);
  transition: 1s;
}
.button:active,
.button.is-checked {
  background-color: var(--lighter-blue);
  color: var(--dark);
}
.btn-check:active + .button,
.btn-check:checked + .button,
.button.active,
.button.dropdown-toggle.show,
.button:active {
  color: #fff;
  background-color: var(--lighter-blue);
  color: var(--dark);
}
.button-group:after {
  content: "";
  display: block;
  /* clear: both; */
}
.button-group .button {
  float: left;
  border-radius: 5px;
}

/* ---- Title ---- */
.display-2 {
  font-family: var(--title);
  font-weight: 700;
  color: var(--dark);
}

/********************* Content *********************/

.main-content {
  line-height: 1.6;
  font-size: 1.1rem;
}
a {
  color: var(--blue);
  text-decoration: underline 0.1em rgba(255, 255, 255, 0);
  transition: text-decoration-color 0.5s;
}
a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}
.main-content h2,
h3,
h4 {
  font-family: var(--headings);
  font-weight: bold;
  color: var(--dark);
  padding-top: 10px;
  padding-bottom: 10px;
}
.highlight {
  line-height: normal;
  font-size: medium;
  border-left-style: solid;
  border-left-width: 5px;
  padding-left: 10px;
  border-color: var(--dark);
}

/********************* Footer *********************/

.footer-social a,
.footer-social i {
  color: var(--dark);
  font-size: x-large;
}

.footer-social a,
.footer-social i:hover {
  color: var(--blue);
  transition: color 0.5s;
}
