@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: rgb(253, 61, 103);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: black;
}

.input{
    /* border: 2px solid; */
    width: 60%;
    height: 40vh;
}

textarea{
    width: 100%;
    height: 100%;
    padding: 3em;
    border-radius: 1em;
    box-shadow: 1em 1.5em 3em rgb(0 0 0 / 0.8);
    border: none;
    resize: none;
}

.output{
    /* border: 2px solid; */
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    text-align: center;
}
