html, body{
  margin: 0;
  background-color: #000;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
}
.keyboard{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;

}
.row{
  display: flex;
  justify-content: center;
}
.row.last{
  margin-left: -100px;
}
.key{
  animation: appear 1.5s;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  color : #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  width: 105px;
  height: 105px;
  margin: 10px;
  transition: all ease .5s;
}
.key.active{
  background-color: white;
  color: black;
}
.key.active.success{
  background-color: #2ecc71;
  color: white;
  border-color: #2ecc71;
}
.key.active.fail{
  background-color: #e74c3c;
  color: white;
  border-color: #e74c3c;
}
.swal-modal{
  background-color: black;
  border: 1.5px solid white;
}
.swal-title{
  font-size: 40px;
  color: white;
}
.swal-level{
  padding-bottom: 20px;
}
.swal-footer{
  padding-top: 15px;
  text-align: center;
}
.swal-text{
  color: white;
  font-size: 20px;
}
.swal-button{
  background-color: black;
  transition: all ease .5s;
  border: 1px solid white;
  text-transform: uppercase;
}
.swal-button:hover{
  background-color: white;
  color: black;
}
.swal-icon--success:after, .swal-icon--success:before,
.swal-icon--success__hide-corners{
  background: black;
}
.swal-icon--success__hide-corners{
  background-color: black;
}

@keyframes appear {
  0%{
    color: #000;
  }
  100%{
    color: #fff;
  }
}
