*{
    margin: 0;
    padding: 0;
}
body{
    overflow: hidden;
}
.screen{
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 20rem;
    width: 25rem;
    background-color: #c0fabc;
    padding: 1rem;
    border-radius: 1rem;
}
#input{
    width:100%;
    border-radius: 0.5rem;
    height: 15rem;
    /* border: none; */
}
.buttons{
    display: flex;
    gap: 4px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding:0.7rem 2.2rem;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  width:10%;
  cursor: pointer;
  /* display: inline-block; */
  /* margin: 4px 2px; */
}
.listeningButton{
    width: 60%;
    padding:0.6rem 2.2rem;
}
/* .copyButton{
    padding:0.6rem 2.2rem ;
} */

.copied{
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: large;
    color: cadetblue;
    scale: 0;
}
.active{
    scale:1;
}

