:root {
  --tyrell: rgba(44, 107, 63, 0.8);
  --baratheon: rgba(158, 142, 83, 0.8);
  --arryn: rgba(125, 146, 139, 0.8);
  --tully: rgba(82, 82, 94, 0.9);
  --stark: rgba(147, 137, 112, 0.8);
  --lannister: rgba(186, 168, 58, 0.8);
  --targaryen: rgba(170, 43, 34, 0.8);
  --martell: rgba(170, 96, 27, 0.8);
  --greyjoy: rgba(114, 96, 50, 0.8);
  --background: rgba(83, 69, 43, 0.9);
  --text: rgb(0, 0, 0);
}

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

* {
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  text-align: center;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}

li {
  list-style-type: none;
}

@font-face {
  font-family: 'game_of_thronesregular';
  src: url("assets/fonts/game-of-thrones-webfont.woff2") format("woff2"), url("assets/fonts/game-of-thrones-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes right {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes right {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  font-family: 'Gothic A1', sans-serif;
  font-size: 16px;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

.background-container .background-picture {
  position: fixed;
  width: 150%;
  height: 500%;
  background-image: url("assets/westeros_map.jpg");
  background-size: cover;
  overflow: hidden;
}

@media (max-width: 992px) {
  .background-container .background-picture {
    background-size: 110% 100%;
  }
}

@media (max-width: 768px) {
  .background-container .background-picture {
    background-size: 120% 100%;
  }
}

.container {
  position: absolute;
  max-height: 120rem;
  width: 80%;
  max-width: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}

.header-container h1 {
  font-family: 'game_of_thronesregular';
  font-size: 2rem;
  padding: 1rem;
  margin: 1rem auto;
  color: var(--text);
  background-color: var(--background);
  letter-spacing: 0.7rem;
  line-height: 2.5rem;
  border-radius: 0.8rem;
}

.header-container .icon {
  display: none;
}

.content-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 75%;
      grid-template-columns: 25% 75%;
  border-radius: 0.5rem;
  padding: 0 1rem;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .menu-container {
  margin: 0 auto;
  width: 90%;
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3rem;
  width: 13rem;
  margin: 0.7rem auto;
  background-color: var(--background);
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 0.8rem;
  border: none;
}

.menu-item .menu-item-img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.5rem 0 0.7rem;
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
}

.menu-item span {
  text-align: start;
  margin-left: 0.5rem;
  font-weight: bold;
  -webkit-animation: right 1s forwards;
          animation: right 1s forwards;
}

.menu-item:hover {
  background-color: #cabd9f;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.menu-item:focus > .menu-item-img {
  position: absolute;
  margin-left: 10rem;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.menu-item:focus > span {
  -webkit-animation: opacity 1s forwards;
          animation: opacity 1s forwards;
}

.menu-item:focus {
  background-color: rgba(0, 0, 0, 0.5);
  color: #cabd9f;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  border: 0.2rem solid black;
  outline: none;
}

@media (max-width: 992px) {
  .menu-item {
    width: 9rem;
  }
  .menu-item:focus > .menu-item-img {
    margin-left: 6.5rem;
  }
  .menu-item:focus > span {
    width: 4rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    background-color: var(--background);
    border-radius: 0.5rem;
    height: 10rem;
    margin-bottom: 1rem;
  }
  .header-container h1 {
    background-color: transparent;
  }
  .header-container .icon {
    display: block;
    font-size: 3.5rem;
    margin-top: -2rem;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header-container .active {
    -webkit-transform: rotate(0.5turn);
            transform: rotate(0.5turn);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .navbar {
    position: absolute;
    top: -100%;
    overflow: auto;
  }
  .navbar .menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .navbar.active {
    position: relative;
    left: -2.5%;
    margin-top: -1rem;
    width: 105%;
    background-color: #7e6e50;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  .menu-item {
    background-color: transparent;
    border: 1px solid #000;
    width: 9.5rem;
    height: 2.5rem;
    margin: 0.3rem 0;
  }
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
}

.content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  height: 100%;
  color: var(--text);
}

.content-info .house {
  font-family: 'game_of_thronesregular';
  text-align: center;
  line-height: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem auto 0;
}

.content-info .house::after {
  content: '';
  display: block;
  width: 120%;
  height: 0.2rem;
  margin: 1rem -10% 0;
  background-color: var(--text);
}

.content-info .row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 60%;
      grid-template-columns: 40% 60%;
  margin-top: 3rem;
}

.content-info .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 0.5rem 1rem;
}

.content-info .shield {
  height: 10rem;
  width: auto;
  margin: 0 0 1rem;
}

.content-info .slogan {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.7rem;
}

.content-info .description {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  margin-top: -2rem;
  text-align: center;
  font-weight: bold;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 18rem;
  line-height: 18rem;
}

.content-info span {
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
}

.question {
  width: 80%;
  font-size: 1.1rem;
  margin: 1rem auto 1rem;
  text-align: center;
  font-weight: bold;
}

.question::before {
  content: '';
  display: block;
  width: 105%;
  height: 0.2rem;
  margin: 0 -2.5% 0.5rem;
  background-color: var(--text);
}

.question::after {
  content: '';
  display: block;
  width: 105%;
  height: 0.2rem;
  margin: 0.5rem -2.5% 0;
  background-color: var(--text);
}

.content-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
}

.content-img-container .content-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8rem;
  width: 8rem;
  margin: 0.5rem 0;
  background-color: var(--stark);
  border-radius: 50%;
  background-size: cover;
  border: 0.1rem solid black;
}

.fire {
  background-image: url(assets/fire.gif);
}

.light {
  background-image: url(assets/light.gif);
}

.dead {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .col {
    padding-top: 4rem;
  }
  .content-info .house::after {
    width: 70%;
    margin: 1rem auto 0;
  }
  .content-img-container .content-img {
    height: 5rem;
    width: 5rem;
  }
}

@media (max-width: 768px) {
  .header-container h1 {
    font-size: 1.5rem;
  }
  .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 1rem;
  }
  .content-info .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
  }
  .content-info .col {
    margin: 0.5rem auto 2rem;
    padding-top: 0;
  }
  .content-info .shield {
    height: 7rem;
  }
  .content-img-container .content-img {
    height: 5rem;
    width: 5rem;
  }
  .question {
    font-size: 0.9rem;
  }
}

footer {
  font-family: 'game_of_thronesregular';
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0.5rem 0 1rem;
}

footer .footer-info {
  height: 100%;
  width: 200%;
  padding: 1rem 0;
  background-color: var(--background);
  border-radius: 0.5rem;
  text-align: center;
  line-height: 1.5rem;
}

footer .footer-info .github-link {
  color: black;
}

footer .footer-info .github-link:hover {
  color: #7e6332;
}
/*# sourceMappingURL=style.css.map */