nav.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #333;
}
nav.navbar .nav-items {
  flex-direction: column;
}
nav.navbar .nav-link {
  color: #fff;
}
nav.navbar .navbar-nav .nav-link.active,
nav.navbar .navbar-nav .nav-link.show {
  color: rgb(0, 119, 255);
}
nav.navbar .account-icon {
  justify-self: right;
  margin: 0 20px;
  font-size: 20px;
}
nav.navbar .account-icon i {
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}
nav.navbar .account-icon i:hover {
  color: rgb(0, 119, 255);
}
nav.navbar .login__box {
  flex-direction: column;
  position: absolute;
  top: 55px;
  right: 30px;
  background-color: #333;
  color: #fff;
  padding: 25px;
  transition: 0.3s;
  display: none;
}
nav.navbar .login__box a {
  color: #fff;
  display: inline-block;
  width: 100%;
}
nav.navbar .login__box p {
  margin-top: 20px;
}
nav.navbar .login__box--account-details {
  margin-top: 0 !important;
}
nav.navbar .login__box--account-details a {
  color: rgb(140, 0, 255);
  font-weight: bold;
  cursor: pointer;
}
nav.navbar .show {
  display: flex;
  z-index: 999;
}

@media (min-width: 992px) {
  .navbar-nav {
    align-items: center;
  }
  .nav-items {
    flex-direction: row !important;
  }
}
header {
  max-height: 94.1vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
header img {
  height: 242px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.4);
}
header h1 {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 119, 255);
  font-size: 2rem;
}
header h2 {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
}
header .carousel-control-prev {
  max-height: 94.1vh;
  z-index: 0;
}
header .carousel-control-next {
  max-height: 94.1vh;
  z-index: 0;
}

@media (min-width: 992px) {
  header h1 {
    top: 45%;
    font-size: 4rem;
  }
  header h2 {
    top: 55%;
    font-size: 3rem;
  }
  header img {
    height: 1000px;
  }
}
.card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  justify-items: center;
}
.card-container .card {
  height: 340px;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 2px solid rgb(0, 119, 255);
  box-shadow: 0px 0px 18px 6px rgba(0, 119, 255, 0.7);
  transition: transform 0.3s, height 0.5s;
  cursor: pointer;
}
.card-container .card-body {
  background-color: #222;
  color: #fff;
}
.card-container .card-title {
  color: rgb(0, 119, 255);
}
.card-container .card img {
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: zoom 0.3s;
}
.card-container .card:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .card-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .card-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.game__title {
  font-size: 36px;
  margin-bottom: 50px;
  width: 100%;
  color: rgb(0, 119, 255);
}

.game__header img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__header--description {
  margin-top: 50px;
}

.game__content--info {
  font-weight: bold;
}
.game__content--data table {
  font-size: 16px;
  width: 100%;
}
.game__content--data table tbody tr {
  display: grid;
  grid-template-columns: 50% 50%;
  border-bottom: 3px ridge rgb(140, 0, 255);
  padding: 10px 0;
}
.game__content--data table tbody tr td {
  display: flex;
  align-items: center;
}
.game__content--title {
  margin-top: 150px;
  font-size: 28px;
}
.game__content--headline {
  margin-top: 50px;
}
.game__content iframe {
  width: 100%;
  height: 300px;
}

.game__comments--header {
  margin-top: 50px;
}
.game__comments--comment {
  border-bottom: 3px ridge rgb(140, 0, 255);
}
.game__comments--form {
  width: 100%;
}
.game__comments--error {
  margin-top: 20px;
  width: -moz-max-content;
  width: max-content;
  height: 60px;
}
.game__comments--textarea {
  width: 40%;
  margin-bottom: 10px;
  color: #fff;
  background-color: #444;
  border: none;
  border-bottom: 3px solid white;
  transition: border-color 0.2s ease-out, width 0.3s;
  word-wrap: break-word;
  word-break: break-all;
}
.game__comments--textarea:focus {
  outline: none;
  border-color: rgb(0, 119, 255);
}
.game__comments--submit {
  border-radius: 8px;
  background-color: rgb(140, 0, 255);
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  transition: 0.3s;
}
.game__comments--submit:hover {
  background-color: rgb(4, 0, 255);
}
.game__comments--counter {
  margin-top: 20px;
}
.game__comments--username {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: rgb(0, 119, 255);
}

@media (min-width: 992px) {
  .game__title {
    font-size: 48px;
    margin-bottom: 50px;
    width: 100%;
  }
  .game__header {
    display: flex;
    gap: 100px;
    font-size: 22px;
  }
  .game__header img {
    display: inline-block;
    width: 450px;
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .game__header--description {
    font-size: 22px;
    text-align: justify;
    margin-top: 0;
  }
  .game__content {
    margin-top: 200px;
  }
  .game__content--data p {
    margin-top: 20px;
    font-size: 22px;
  }
  .game__content--info {
    font-size: 22px;
    font-weight: bold;
  }
  .game__content--headline {
    font-size: 2rem;
    color: rgb(0, 119, 255);
    text-decoration: underline;
  }
  .game__content--title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
  }
  .game__content td {
    font-size: 22px;
  }
  .game__content iframe {
    width: 1280px;
    height: 720px;
  }
}
.login__main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/cardimages/Cyberpunk2077-keyart-female_v.jpeg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 94.1vh;
  margin-top: 0 !important;
}
.login__main .login__form {
  width: 90%;
  font-size: 36px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 3px solid rgb(0, 119, 255);
  padding: 50px 50px;
  border-radius: 36px;
  box-shadow: 0px 0px 18px 6px rgba(0, 119, 255, 0.7);
}
.login__main .login__form input {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: 3px solid rgb(0, 119, 255);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 36px;
}
.login__main .login__form input:focus {
  outline: none;
  border-color: rgb(140, 0, 255);
}
.login__main .login__form label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 48px;
  color: #fff;
}
.login__main .login__form input[type=submit]:hover {
  background-color: #005a9e;
}

@media (min-width: 992px) {
  .login__main .login__form {
    width: 50%;
  }
  .login__main .login__form input {
    padding: 10px;
    font-size: 24px;
  }
  .login__main .login__form label {
    font-size: 28px;
  }
}
.account__arrow {
  position: fixed;
  top: 70px;
  left: 10px;
  padding: 15px 20px;
  font-size: 24px;
  transition: 0.5s;
  color: #fff;
  background-color: rgba(140, 0, 255, 0.8);
  border-radius: 50px;
}

.arrow-show {
  left: 55% !important;
  transform: rotate(180deg);
  background-color: rgb(140, 0, 255);
  color: rgb(0, 119, 255);
}

.account {
  display: flex;
  min-height: 90vh;
}
.account__menu {
  height: 94vh;
  position: fixed;
  top: 50px;
  background-color: #333;
  left: -400px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  border-right: 3px solid rgb(140, 0, 255);
  border-top: 3px solid rgb(140, 0, 255);
  transition: 0.5s;
}
.account__menu--option {
  padding: 10px;
  border: 3px solid rgb(0, 119, 255);
  margin-top: 30px;
  width: 150px;
  text-align: center;
  transition: color 0.3s;
}
.account__menu--option:hover {
  cursor: pointer;
  color: rgb(0, 119, 255);
}
.account .menu-show {
  left: 0;
}
.account__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.account__content img {
  height: 240px;
  width: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.account__content p {
  font-size: 1.3rem;
}
.account__content--game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 3px ridge rgb(140, 0, 255);
  transition: 0.3s;
}
.account__content--game-container:hover {
  cursor: pointer;
  background-color: rgba(140, 0, 255, 0.3);
}
.account__content--game-data-container {
  margin-top: 30px;
  text-align: justify;
}
.account__content--headers {
  font-weight: bold;
  color: rgb(0, 119, 255);
}

@media (min-width: 992px) {
  .account__arrow {
    display: none;
  }
  .account__menu {
    left: 0;
    width: 15%;
    border-top: none;
  }
  .account__content {
    margin-left: 150px;
  }
  .account__content--game-container {
    flex-direction: row;
  }
  .account__content--game-container:hover {
    scale: 1.1;
  }
  .account__content--game-data-container {
    padding-left: 50px;
    margin-top: 0;
  }
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #444;
  color: #fff;
}

main {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .add__game {
  position: fixed;
  padding-top: 130px;
  top: 0;
  left: -500px;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  color: #fff;
  text-align: center;
  background-color: #333;
  z-index: 10;
  transition: left 0.5s;
  overflow: scroll;
}
main .add__game input {
  width: 300px;
}
main .add__game form {
  margin-top: 300px;
}
main .add__game--exit {
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
  font-size: 36px;
  z-index: 11;
  transition: color 0.3s;
}
main .add__game--exit:hover {
  color: rgb(0, 119, 255);
}
main .add__game--show {
  left: 0 !important;
}
@media (min-width: 768px) {
  main .add__game {
    width: 400px;
  }
}

.login__submit {
  padding: 10px 20px;
  background-color: #0078d7;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.form--info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.primary-color {
  color: rgb(0, 119, 255);
}

.secondary-color {
  color: rgb(140, 0, 255);
}/*# sourceMappingURL=style.css.map */