@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto:wght@500&family=Signika+Negative:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
}

html,
body {
  height: 100vh;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(24, 24, 124, 1) 50%,
    rgba(0, 212, 255, 1) 100%

  );
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: anim2 1s cubic-bezier(0.19, 1, 0.22, 1) 5s both;
}

#wrapperload {
  width: 500px;
  height: 100px;
  overflow: hidden;
  background-color: #fff;
}

#wrapperload .elem {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;
  display: flex;
  color: #4643e7;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* background-color: #efefef; */
}

#wrapperload .elem:nth-child(1) {
  animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 1s both;
}

#wrapperload .elem:nth-child(2) {
  animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 3s both;
}

#wrapperload .elem:nth-child(3) {
  animation: anim 2s cubic-bezier(0.19, 1, 0.22, 1) 5s both;
}

@keyframes anim {
  to {
    margin-top: -100px;
  }
}

@keyframes anim2 {
  to {
    transform: translateY(-100%);
  }
}

.main{
  height: 80vh;
  width: 60%;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.main h1{
  font-weight: 700;
}

.main h1 span{
  color: #ff2963;
  text-decoration: underline;
}

.main textarea{
  width: 65%;
  height: 60%;
  color: #000000;
  background-color: #fff;
  font-size: 25px;
  padding: 20px;
  margin-bottom: 30px;
  outline: none;
  border: none;
  border-radius: 15px;
  resize: none;
}

.display-section{
  height: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 5vh;
  justify-content: space-between;
  flex-direction: column;
}

.but-section{
  height: 10%;
  gap: 3%;
  width: 100%;
  /* border: 3px solid black; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.Options{
  height: 5vh;
  width: 40%;
  color: #000000;
  border-radius: 35px;
}

button{
  color: black;
  border: 3px solid #ff2963;
  font-size: 16px;
  border-radius: 35px;
  outline: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  text-align: center;
  height: 5vh;
}

button:hover{
  background-color: #ff2963;
  color: #fff;
  transition: 0.6s;
  scale: 1.1;
}

button img{
  height: 30px;
  width: 28px;
  padding-bottom: 5px;
}

@media (min-width: 340px) and (max-width: 1024px) {

  .main{
    width: 100%;
    height: 100%;
  }

  .display-section{
    width: 100%;
  }
  h1{
    display: flex;
    flex-direction: column;
  }

  #txt{
    height: 70%;
    width: 80%;
    font-size: large;
  }

  #txt::placeholder{
    font-size: large;
    color: #7f7de0;
    font-weight: 800;
  }

  .but-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
  }

  .Options{
    width: 60%;
  }
  button{
    width: 50%;
  }
}