@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  /* height: 100vh; */
  color: #333;
  /* background-image: linear-gradient(to top left, #753682 0%, #bf2e34 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LAYOUT */
main {
  position: flex;
  width: 100rem;
  /* height: 60rem; */
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(200px);
  filter: blur();
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.25);
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* justify-content: end; */
  /* border: 3px solid red; */
  margin-top: 40px;

}
.buttons {
  /* border: 3px solid black; */
  padding: 10px;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.1);
  display: flex;  
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.pictures {
  min-height: 300px;
  padding-top: 1rem;
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.1);
  /* border: 3px solid brown; */
}
.picture {
  height: 150px; 
  margin-left: 5px;
}
.btn i {
  color: lightgreen;
  font-size: 3rem;
}
.bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  box-shadow: 0 1.75rem 3.5rem rgba(241, 223, 223, 0.1);

  /* flex-direction: column; */
}
.bottom-item {
  width: 45%;
  box-shadow: 0 1.75rem 3.5rem rgba(241, 223, 223, 0.1);
  /* border: 2px solid black; */
}
.results {
  padding: 2rem;
  display: flex;
  justify-content: center;
  font-size: 3rem;
  min-height: 140px;
  align-items: center;
  transition: all 0.75s;
  border-radius: 5px;
  text-align: center;
  color: darkgreen;
  font-weight: bold;
  margin: 15px;

}

/* ELEMENTS */


a {
  text-decoration: none;
}
.current-score {
  font-size: 3.5rem;
}

.btn {
  color: #444;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.8rem;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.2s;

  background-color: white;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);

  padding: 0.7rem 2.5rem;
  border-radius: 50rem;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.1);
}
.input-phrase {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  justify-content: space-around;
  /* flex-direction: column; */
  flex-wrap: wrap;
  background: white;
  border-radius: 5px;
  min-height: 140px;
}
.btn-input {
  text-align: center;
  box-shadow:5px 5px 15px rgba(0, 0, 0, 0.4);
  text-decoration: underline dotted;
}
.btn-game-finish {
  position: static;
  top: 400px;
  left: 10%  ;
}
.keyboard-image {
  background: lightgreen;
  z-index: 12;
  width: 100%;
}
.btn::first-letter {
  font-size: 2.4rem;
  display: inline-block;
  margin-right: 0.7rem;
}


.btn:active {
  transform: translate(0%, 3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn:focus {
  outline: none;
}


.hidden {
  display: none;
}

.levels {
  width: 40%;
  height: 50px;
  display: flex;
  justify-content: center;
}
.level img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}


@media screen and (max-width: 500px) {
  .picture {
    height: 100px;
  }
  .pictures {
    min-height: auto;
  }
  .players {
    flex-direction: column;
  }
  .btn {
    font-size: 1.5rem;      
  }
  main {
    margin: 0;
  }
}
