*{
    box-sizing: border-box;
    margin: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: aqua;
}
h1{
    text-align: center;
    color: white;
   

}
h2{
    text-align:center;
 
    margin-top: 2%;
    margin-bottom: 45%;
    color: rgb(16, 13, 13);
    font: size 100px;
}

.container{
    background-color: #f00a94;
    display: grid;

    gap: 9px;
    
    width: 600px;
    
   
    max-width: calc(100vw - 10px);
    padding: 37px;
    padding-top: 20px;
    border-radius: 23px;
    font-size: 1.1rem;

}

#text{
    display: block;
    height: 500px;
    border-radius: .9rem;
    font-size: 1.1rem;
    border: none;
    resize: none;
    padding: 150px 100px;
    margin-top: 10px;

    margin-bottom:10px;
    outline: 6px solid rgba(201, 207, 207, 0.623);
}

button{
    padding: 15px;
    background: #072227;
    color:rgb(226, 219, 219);
    border-radius: .5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: bold;
}