@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:wght@100&display=swap");
* {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  color: white;
}

html {
  height: 100%;
}
html body {
  position: absolutes;
  height: 100%;
  background: linear-gradient(to top, rgb(15, 15, 15), rgb(75, 75, 75));
  background-attachment: fixed;
}

@media all {
  header {
    width: 100%;
  }
  header .nav-bar {
    width: 100%;
    height: 20px;
    padding: 1em 0 1em 0;
    background-color: #443737;
    box-shadow: 0 0 3vh rgb(0, 0, 0);
    border-radius: 0 0 1em 1em;
  }
  header .nav-bar ul {
    display: flex;
    justify-content: space-evenly;
  }
  header .nav-bar ul .nav-item {
    list-style: none;
  }
  header .nav-bar ul .nav-item a {
    text-decoration: none;
    padding: 0.5em 1.5em;
    border: 1px solid #b0a3a3;
  }
  header .nav-bar ul .nav-item a:hover {
    color: red;
  }
  .wrapper-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: url("../images/pexels-marko-blazevic-2708981.jpg") no-repeat center;
    background-size: cover;
    opacity: 50%;
    height: 75vh;
    width: 100%;
    box-shadow: 0 0 5em black;
    border-bottom: 1px solid black;
  }
  main .welcome {
    height: 97vh;
    padding: 3em 1em 0 1em;
  }
  main .welcome .main-section .intro {
    text-align: center;
  }
  main .welcome .main-section .info-box h2 {
    margin-top: 2.5em;
    text-align: center;
  }
  main .welcome .main-section .info-box .flex-holder {
    display: flex;
    justify-content: space-evenly;
  }
  main .welcome .main-section .info-box .flex-holder .info {
    display: flex;
    background-color: #443737;
    text-align: center;
    text-decoration: none;
    margin: 3em 0;
    width: 30vw;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1em;
  }
  main .welcome .main-section .info-box .flex-holder .info:hover p {
    color: red;
  }
  main .welcome .main-section .info-box .flex-holder .info h2 {
    margin-left: 1em;
  }
  main .welcome #item-input {
    display: block;
    margin: auto;
    color: black;
  }
  main .tech-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 50vh;
  }
  main .tech-stack h2 {
    margin-left: 1.5em;
  }
  main .tech-stack .tech {
    margin-top: 1em;
    width: 100%;
    background-color: #443737;
    padding: 2em 0;
  }
  main .tech-stack .tech details {
    max-width: 80%;
    margin: 0 1em;
  }
  main .tech-stack .tech details summary {
    color: rgba(255, 255, 255, 0.5);
  }
  main .tech-stack .tech details[open] > summary {
    color: white;
  }
  main .tech-stack .tech details[open] p {
    margin: 0 0 0.5em 1em;
    font-size: 0.9em;
  }
  main .tech-stack .extra-detail {
    text-align: center;
    color: rgba(255, 255, 255, 0.5215686275);
    margin: 3em 1em;
    font-size: 0.9em;
  }
  main .game-wrapper {
    width: 100%;
    display: grid;
  }
  main .game-wrapper figure {
    width: 30vh;
    height: 20vh;
  }
  main .home h1 {
    text-align: center;
    margin: 1.5em 0 0.25em 0;
    font-size: 2em;
  }
  main .home .title-line {
    width: 50%;
    margin: auto;
    background: linear-gradient(to right, transparent, white, transparent);
    margin-bottom: 5em;
  }
  main .home .question1 {
    display: inline-block;
    background-color: rgba(155, 9, 9, 0.7058823529);
    margin-bottom: 3em;
    padding: 1em 2em 1em 2em;
    border-radius: 0 5em 5em 0;
    box-shadow: 0 5px 1em rgba(0, 0, 0, 0.5);
    border-top: 1px solid white;
    font-size: 0.9em;
    animation: leftSlide 1s ease-out forwards;
  }
  @keyframes leftSlide {
    0% {
      opacity: 0;
      transform: translateX(-70vw);
    }
    100% {
      opacity: 100%;
      transform: translateX(0);
    }
  }
  main .home .first-cover {
    float: right;
    background-color: rgba(155, 9, 9, 0.7058823529);
    margin-bottom: 1em;
    padding: 1em 2em 1em 2em;
    border-radius: 5em 0 0 5em;
    opacity: 0;
    transform: translateX(50vw);
    box-shadow: 0 5px 1em rgba(0, 0, 0, 0.5);
    border-top: 1px solid white;
    font-size: 0.9em;
    animation: rightSlide 1s 1s ease-out forwards;
  }
  @keyframes rightSlide {
    0% {
      opacity: 0;
      transform: translateX(50vw);
    }
    100% {
      opacity: 100%;
      transform: translateX(0);
    }
  }
  main .home .promo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  main .home .promo h2 {
    background-color: #443737;
    margin: 5vw 7vh 30vh 7vh;
    font-size: 4vw;
    text-align: center;
    padding: 2em 2em 2em 2em;
    font-size: 1em;
    max-width: 50vw;
    max-height: -moz-min-content;
    max-height: min-content;
    margin: 5em 2em 5em 2em;
    border-radius: 1em;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  }
  main .home .promo h2::before {
    content: "";
    background-color: #443737;
    width: 100%;
    height: 5em;
    z-index: -1;
    position: absolute;
    left: 0;
  }
  main .home img {
    width: 100%;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.5);
  }
  main .home .question-p {
    text-align: center;
    margin: 5em 1em;
    font-size: 1.25em;
  }
  main .home .question-p span {
    font-weight: 600;
    color: red;
  }
  main .home .question-p .got-you {
    opacity: 0;
    transition: all 2s;
  }
  main .home .question-p .fade-animated {
    opacity: 100%;
  }
  main .top {
    margin-top: 3em;
  }
  main .top h1 {
    font-size: 2em;
    margin: auto;
    margin-bottom: 1em;
    text-align: center;
    grid-area: games;
  }
  main .top select {
    background-color: rgba(0, 0, 0, 0.5);
    height: 2.3em;
    width: 25vw;
    max-width: 10em;
    accent-color: black;
  }
  main .top .search-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
  }
  main .top .search-area .search .search-btn {
    width: 3em;
    height: 3em;
    background-color: rgba(0, 0, 0, 0.5);
  }
  main .top .search-area .search .search-game {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 1vw;
    width: 10em;
    height: 2em;
    caret-color: #d53d3d;
  }
  main .bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main .bottom select {
    background-color: rgba(0, 0, 0, 0.5);
    height: 2.3em;
    width: 25vw;
    max-width: 10em;
    accent-color: black;
  }
  main .bottom .search-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
  }
  main .bottom .search-area .search .search-btn {
    width: 3em;
    height: 3em;
    background-color: rgba(0, 0, 0, 0.5);
  }
  main .bottom .search-area .search .search-game {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 1vw;
    width: 10em;
    height: 2em;
    caret-color: #d53d3d;
  }
  main .games {
    width: 100%;
    margin: 3em 0;
    display: flex;
    flex-direction: column;
  }
  main .games .games-margin {
    width: 90%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.25);
  }
  main .games .games-margin .container {
    width: 97%;
    padding: 1.5em 0;
    gap: 2vw 2vw;
    margin: auto;
    border-radius: 1em;
    display: grid;
    grid-template-columns: repeat(4, 20vw);
    justify-content: center;
  }
  main .games .games-margin .container .game-item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 10%;
    transform: scale(0.75);
    border: none;
    transition: transform 1s, opacity 1s, background-color 0.25s;
  }
  main .games .games-margin .container .game-item:hover {
    background-color: rgb(200, 0, 0);
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
  }
  main .games .games-margin .container .game-item img {
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    width: 20vw;
  }
  main .games .games-margin .container .fade-animated {
    opacity: 100%;
    transform: scale(1);
  }
  main .game {
    width: 100%;
    display: none;
  }
  main .game .game-wrapper {
    display: grid;
    grid-template-rows: 60% 40%;
    grid-template-columns: 40% 60%;
    width: 90%;
    height: 75vh;
    margin: auto;
    margin-top: 3vw;
    margin-bottom: 3vw;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 1em;
  }
  main .game .game-wrapper .game-img-container {
    grid-row: 1;
    margin: auto;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  main .game .game-wrapper .game-img-container .game-img {
    display: block;
    width: 90%;
    margin: auto;
    box-shadow: 0 0 5em rgba(0, 0, 0, 0.5);
  }
  main .game .game-wrapper .basic-info {
    grid-column: 2/4;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.5);
    border-radius: 1em;
    margin: 3em 3em 3em 0;
    padding: 1em;
  }
  main .game .game-wrapper .basic-info h1 {
    font-size: 24px;
    margin-bottom: 0.5em;
  }
  main .game .game-wrapper .basic-info p {
    font-weight: 600;
    margin: 0.25em 0 0.25em 0;
  }
  main .game .game-wrapper .basic-info p span {
    font-weight: 400;
  }
  main .game .game-wrapper .screenshot-section {
    grid-column: 1/-1;
  }
  main .game .game-wrapper .screenshot-section .screenshot-header {
    font-size: 2rem;
    text-align: center;
  }
  main .game .game-wrapper .screenshot-section .game-screenshots {
    grid-column: 1/-1;
    grid-row: 2;
    display: flex;
    width: 93%;
    height: 85%;
    margin: auto;
    margin-top: 0;
    overflow-x: auto;
    align-items: center;
    gap: 1vw;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.5);
    border-radius: 1em;
  }
  main .game .game-wrapper .screenshot-section .game-screenshots .game-screenshot {
    width: 27vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  main .game .back-parent {
    width: 100%;
  }
  main .game .back-parent .back-btn {
    display: block;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    border: none;
    font-size: 3em;
    width: 2em;
    height: 2em;
    margin: auto;
  }
  .btn-holder {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
    text-align: center;
    margin: 0.5em 0 1em 0;
    width: 100%;
  }
  .btn-holder button {
    margin: 0.25em 0.5em;
    width: 1.25em;
    background-color: transparent;
    border: none;
    text-decoration: none;
    font-size: 4em;
  }
  .page-holder p {
    margin: 1em 0;
    text-align: center;
    font-size: 2em;
  }
  footer {
    display: flex;
    flex-direction: column;
    margin-top: 3em;
    padding: 1em 0;
    border-top: 1px solid white;
    box-shadow: 0 0 1em rgba(255, 255, 255, 0.5);
    background-color: #443737;
    width: 100%;
  }
  footer .to-top::before {
    content: "To Top";
    position: absolute;
    font-size: 1rem;
    top: -30%;
    left: 24%;
  }
  footer .to-top {
    position: fixed;
    cursor: pointer;
    z-index: 1;
    left: 2vw;
    bottom: 5vh;
    font-size: 4em;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 1.5em;
    border: none;
  }
  footer #social-media {
    width: 100%;
    padding-bottom: 1em;
  }
  footer #social-media .sm-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-20vw);
    opacity: 0;
    gap: 2em;
    transition: all 1s;
  }
  footer #social-media .sm-parent #github {
    background: url("../images/github-social-logo.png") no-repeat center;
    background-size: contain;
    height: 2.5em;
    width: 2.5em;
  }
  footer #social-media .sm-parent #linkedIn {
    background: url("../images/Linkedin-logo-on-transparent-Background-PNG-.png") no-repeat center;
    height: 2.5em;
    width: 2.5em;
  }
  footer #social-media .left-animated {
    opacity: 100%;
    transform: translateX(0);
  }
  footer .about {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  footer .about:hover {
    color: white;
  }
  footer a {
    text-align: center;
    color: rgb(199, 199, 199);
  }
  footer p {
    text-align: center;
  }
}
@media all and (min-width: 897px) {
  .home .wrapper-img {
    display: block;
    height: 100%;
  }
  .home .title-line {
    width: 300px;
  }
  .home figure {
    display: grid;
    place-items: center;
    margin-top: 10vh;
  }
  .home figure img {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media all and (min-width: 1100px) {
  main .games .games-margin .container .game-item img {
    width: 20vw;
  }
  main .games .games-margin .container main .game .game-wrapper .game-img-container .game-img {
    max-width: 430px;
  }
  main .games .games-margin .container main .game .game-wrapper .game-screenshots .game-screenshot {
    max-width: 430px;
  }
}
@media all and (max-width: 896px) {
  main .game {
    margin: 5vh 0;
  }
  main .game .game-wrapper {
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    gap: 3vh;
    margin-bottom: 5vh;
  }
  main .game .game-wrapper .game-img-container {
    margin-top: 3vh;
  }
  main .game .game-wrapper .game-img-container .game-img {
    display: block;
    width: 90%;
    margin: auto;
  }
  main .game .game-wrapper .basic-info {
    margin: auto;
    width: 85%;
  }
  main .game .game-wrapper .screenshot-section .screenshot-header {
    font-size: 1rem;
    text-align: center;
  }
  main .game .game-wrapper .screenshot-section .game-screenshots {
    flex-direction: row;
    width: 85%;
    height: 100%;
    padding: 3vw 3vw;
    margin: auto;
  }
  main .game .game-wrapper .screenshot-section .game-screenshots .game-screenshot {
    width: 50%;
  }
}
@media all and (min-width: 416px) and (max-width: 896px) {
  .home .wrapper-img {
    height: 75vh;
  }
  .home .title-line {
    width: 50%;
    max-width: 500px;
  }
  main .games .games-margin .container {
    height: -moz-max-content;
    height: max-content;
    grid-template-columns: repeat(2, 42.5vw);
  }
  main .games .games-margin .container .game-item img {
    width: 42.5vw;
  }
}
@media all and (min-width: 637px) and (max-width: 1100px) {
  main .games .games-margin .container {
    grid-template-columns: repeat(3, 27.5vw);
  }
  main .games .games-margin .container .game-item img {
    width: 27.5vw;
  }
}
@media all and (max-width: 700px) {
  main .game .game-wrapper .screenshot-section .game-screenshots .game-screenshot {
    width: 75%;
  }
}
@media all and (max-width: 415px) {
  .home h1 {
    font-size: 2em;
  }
  .home .question1 {
    margin-bottom: 3em;
    font-size: 0.9em;
  }
  .home .first-cover {
    margin-bottom: 1em;
    font-size: 0.9em;
  }
  main .games .games-margin .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  main .games .games-margin .container .game-item {
    width: 90%;
  }
  main .games .games-margin .container .game-item img {
    width: 100%;
  }
  main .game .game-wrapper .screenshot-section .game-screenshots .game-screenshot {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */