html{
  height: 100%;
  width: 100%;
}

body{
  background-color:rgb(223, 221, 221);
  background-size: cover; 
  background-blend-mode: overlay;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  width: 350px;
  height: 570px;
  background-color: white;
  border: 1px solid rgb(230, 230, 230);
  box-shadow: 10px 10px 20px 1px black;
  border-radius: 5px;
  font-family: 'Slabo 27px', serif;
}

.container h1 {
  padding-top: 20px;
  margin: 0px;
  font-size: 40px;
  color: #1dafcc;
  font-weight: bold;
}

.container h2 {
  margin-top: 5px;
  font-size: 12px;
  height: 20px;
  color: #1dafcc;
}

.container ul {
  margin-top: 10px;
  margin-bottom: 0px;
  list-style-type: none;
  padding: 0px;
  width: 330px;
  height: 340px;
  font-size: 16px;
  overflow:auto;
}

.container li {
  display: block;
  position: relative;
  padding: 5px;
  border: 1px solid rgb(233, 231, 231);
  border-radius: 4px;
  height: 40px;
  outline: none;
  margin: 3px;
  color: grey;
}

.container li:hover {
  background-color: rgb(21, 159, 223);
  color: white;
}

.container div {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 40px;
  right:10px;
  top: 20%;

}

.container i:active {
  color: yellow;
  font-size: 18px;
}

.container input {
  margin: 10px;
  width: 330px;
  height: 40px;
  padding-left: 10px;
  border: 1px solid lightgrey;
  border-radius: 2px;
}

.container button {
  width: 330px;
  height: 50px;
  background-color: #1dafcc;
  color: white;
  border-radius: 4px;
  border: none;
  
}

.container button:active {
  box-shadow: 2px 2px 1px rgba(61,3,124,1);
}

.swal-modal {
  background-color: white;
  border: 3px solid white;
  width: 330px;
  text-align: center;
}
