body {
  background-color: #232323;
  color: #fff;
  font-family: Fira Code;
  overflow-y: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger, .hamburger-navigation {
  display: none;
}

.logo .logo__svg {
  width: 90%;
  margin-left: 15px;
}

.logo-git {
  width: 21%;
  display: flex;
  justify-content: space-between;
}

.github-logo {
  width: 65px;
  margin-left: 20px;
  margin-top: 0px;
}

.nav-list {
  max-width: 100%;
  list-style: none;
  display: flex;
  height: 80px;
  transform: translateY(-65px);
}
.nav-list__element {
  border: 3px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-right: none;
}
.nav-list__element--active {
  background-color: #fff;
}
.nav-list__element:nth-child(3) {
  border-right: 3px solid #fff;
}
.nav-list__link {
  text-decoration: none;
  color: #ffffff;
}
.nav-list__link--active {
  color: #232323;
}
.nav-list__element:hover {
  background-color: #ffffff;
  color: #232323;
}
.nav-list__element:hover .nav-list__link {
  color: #232323;
}

.content {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
}

#title-rock-paper-scissors {
  font-size: 35px;
  transform: translateY(10px);
}

.app {
  border: 7px solid #fff;
  height: 720px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.app__title {
  font-family: Fira Code;
  font-style: normal;
  font-weight: normal;
  font-size: 64px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.app__text {
  transform: translateY(-60px);
}
.app__button {
  border: none;
  width: 262px;
  height: 61px;
  background: #FFFFFF;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-family: Fira Code;
  font-weight: 600;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 7.5px;
  text-transform: uppercase;
  color: #232323;
}
.app__button:hover {
  background-color: #c9c9c9;
  cursor: pointer;
}
.app__view-code:hover {
  cursor: pointer;
}

.app:nth-child(odd) {
  height: 613px;
}

.app:nth-child(1) {
  border-right: none;
}

.app:nth-child(3) {
  border-left: none;
}

.title-info {
  font-size: 64px;
  transform: translateY(-100px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: normal;
  opacity: 0;
}

.content-info {
  border: #fff 7px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 500px;
  width: 1200px;
}
.content-info__logo {
  width: 30%;
  transform: translateY(-30px);
}
.content-info__text {
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

a {
  text-decoration: none;
  color: #232323;
}

@media only screen and (max-width: 1400px) {
  #title-rock-paper-scissors {
    font-size: 25px;
    transform: translateY(10px);
  }
  .app {
    max-width: 380px;
  }
  .app__title {
    font-size: 44px;
    line-height: 16px;
    letter-spacing: 0.5px;
  }
  .app__text {
    transform: translateY(-60px);
  }
  .app__button {
    width: 202px;
    height: 51px;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #232323;
  }
}
@media only screen and (max-width: 850px) {
  body {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  body::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
  }
  .hamburger {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .nav-list {
    display: none;
  }
  .hamburger, .hamburger-navigation {
    transition: transform 0.2s 0.1s ease-in-out;
  }
  .hamburger--active {
    transform: translateX(-250px);
  }
  .hamburger__box {
    width: 35px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  .hamburger__inner {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s 0.2s ease-in-out;
  }
  .hamburger__inner::before,
.hamburger__inner::after {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    content: "";
    left: 0;
    transition: transform 0.3s 0.2s ease-in-out;
  }
  .hamburger__inner::before {
    top: -10px;
  }
  .hamburger__inner::after {
    top: 10px;
  }
  .hamburger--active .hamburger__inner {
    background-color: transparent;
  }
  .hamburger--active .hamburger__inner::before {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger--active .hamburger__inner::after {
    transform: translateY(-10px) rotate(-45deg);
  }
  .hamburger-navigation {
    height: 100vh;
    width: 250px;
    background-color: #000;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    transform: translateX(250px);
  }
  .hamburger-navigation--active {
    transform: translateX(0px);
    display: block;
  }
  .hamburger-list {
    list-style: none;
    margin-top: 50px;
    margin-left: 20px;
  }
  .hamburger-list__item {
    margin-bottom: 20px;
  }
  .hamburger-list__item a {
    color: #fff;
    cursor: pointer;
  }
  .logo {
    width: 25%;
    height: auto;
  }
  #title-rock-paper-scissors {
    font-size: 19px;
    transform: translateY(10px);
  }
  .content {
    height: 100vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .app {
    margin-top: 10px;
    border: 7px solid #fff;
    height: 400px;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .app__title {
    font-size: 34px;
    line-height: 16px;
    letter-spacing: 0.5px;
  }
  .app__text {
    transform: translateY(-60px);
    display: none;
  }
  .app__button {
    width: 202px;
    height: 51px;
    font-size: 17px;
    line-height: 16px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #232323;
  }
  .app__icon {
    width: 20%;
    transform: translateY(-10px);
  }
  .app .app__view-code {
    display: none;
  }
  .app:nth-child(odd) {
    height: 400px;
  }
  .app:nth-child(1) {
    border: 7px solid #fff;
  }
  .app:nth-child(3) {
    border: 7px solid #fff;
  }
}
@media only screen and (max-width: 1300px) {
  /* fixes */
  .logo{
    width: 20%;
    margin: 0;
    transform: translateY(-10px);
  }
  .content{
    max-height: 90vh;
  } 
  #main-app{
    transform: translateY(-90px);
    height: 500px;
  }
  #sub-app{
    transform: translateY(-90px);
    height: 400px;
  }
  .app__text{
    font-size: 13px;
    margin-top: 100px;
    padding: 20px;
  }
  .app__button{
    transform: translateY(-40px);
  }
  #content-games{
    max-height: 90vh;
  }
  #logo-games{
    width: 20%;
    margin: 0;
    transform: translateY(-10px);
  }
  #info{
    height: 50vh;
  }
  #info-logo{
    transform: translateY(-50px);
  }
  #info-text{
    font-size: 20px;
    transform: translateY(-40px)
  }
  /* fixes */
  .content-info {
    height: 500px;
    width: 900px;
  }
  .content-info__logo {
    width: 30%;
    transform: translateY(-30px);
  }
  .content-info__text {
    font-size: 24px;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (max-width: 1050px) {
  #title-rock-paper-scissors {
    font-size: 19px;
    transform: translateY(10px);
  }
  .app {
    max-width: 280px;
  }
  .app__title {
    font-size: 34px;
    line-height: 16px;
    letter-spacing: 0.5px;
  }
  .app__text {
    transform: translateY(-60px);
  }
  .app__button {
    width: 202px;
    height: 51px;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #232323;
  }
  .container-info {
    height: 500px;
    width: 500px;
  }
}
@media only screen and (max-width: 600px) {
  .content-info {
    height: 500px;
    width: 300px;
  }
  .content-info__logo {
    width: 30%;
    transform: translateY(-10px);
    margin: 0;
  }
  .content-info__text {
    transform: translateY(-30px);
    font-size: 15px;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 90px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}/*# sourceMappingURL=style.css.map */