#fraseBackground {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #1119;
  z-index: 15;
  display: none;
  justify-content: center;
  align-items: center;
}

.FraaseCardLister {
  width: 25%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 20px;
  gap: 10px;
  font-size: 1.3rem;
  min-width: 600px;
  scale: 1.1;
}

.areimg {
  width: 95%;
  height: 300px;
  background-image: url("Imgs/backgroundFrase.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.fraseDisplay {
  width: 95%;
  height: auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0px;
  background-color: #33333322;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

i {
  position: absolute;
  right: 2%;
  bottom: 10%;
  color: #111;
  cursor: pointer;
}

/* Responsividade para celular */

@media (max-width: 600px) {
  #fraseBackground {
    width: 100vw;
    height: 100vh;
    padding: 0;
  }

  .FraaseCardLister {
    width: 90vw;
    min-width: unset;
    padding: 15px 5px;
    font-size: 1rem;
    scale: 1;
    border-radius: 12px;
  }

  .areimg {
    height: 180px;
    border-radius: 4px;
  }

  .fraseDisplay {
    font-size: 1rem;
    padding: 10px;
  }

  h1 {
    font-size: 1.3rem;
  }

  .card {
    width: 95vw;
    min-width: unset;
    padding: 15px 5px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .imageCardIncial {
    height: 120px;
    border-radius: 4px;
  }

  input {
    font-size: 1rem;
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  img {
    width: 18px;
  }
}