/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Smooch&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Borel&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
  /* font-family: 'Open Sans', sans-serif; */
  /* font-family: 'Smooch', cursive; */
  /* font-family: 'Ms Madi', cursive; */
  /* font-family: "Borel", serif; */
  font-family: "Pacifico", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
}

html,
body {
  /* margin: 30px; */
  height: 100%;
  margin: 0%;
  overflow: hidden;
}

body {
  background-color: #83fab7;
}

h1 {
  margin: 0;
  font-size: 1.5em;
}

.dropIn {
  transform: translate(0, 30%)
}

.material-icons {
  font-size: .8em;
  cursor: pointer;
}

label {
  cursor: pointer;
}

.bye {
  opacity: 0;
  transition: 1s opacity;
}

button {
  padding: 5px;
  width: 50%;
  background-color: white;
}

button,
input {
  color: black;
  background-color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(0, 0, 0, .9);
  border-radius: 5px;
}

input[type="text"] {
  width: 100%;
}

button:hover {
  box-shadow: 0px 0px 5px #ccc;
}

/* .strikethrough label
{
  text-decoration: line-through;
} */
label::after {
  content: '';
  display: block;
  height: 3px;
  position: relative;
  bottom: 17px;
  background-color: black;
  transition: all .5s ease;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.strikethrough label::after {
  opacity: 1;
  transform: scaleX(1);
  /* transform: translateX(0px); */
}

li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#background-1 {
  background-color: aqua;
}

#background-2 {
  background-color: yellow;
}

#background-3 {
  background-color: red;
}

#background-4 {
  background-color: purple;
}

.panel {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 6s ease-in-out;
}

#list-app{
  padding: 5px;
  height: calc(100% - 10px);
}

#list-app-wrapper{height: 100%;}

#list-app, #list-app-wrapper  {
  overflow-y: scroll;
  overflow-x: hidden;
  
}

a {
  color: inherit;
}

.link{
  text-decoration: underline;
  cursor: pointer;
}

#backlink {
  text-decoration: none;
  position: fixed;
}

/* #list-container{
  overflow: scroll;
  height: 80%;
} */