*
{
    box-sizing: border-box;
    margin: 0;
}
body
{
    min-height: 100vh;
    background: linear-gradient(to top left, rgb(2, 2, 53), rgb(12, 12, 34));
    
}
main
{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 95vh;
    width: 100%;
}
h1
{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    letter-spacing: 1px;
    word-spacing: 3px;

    color: white;
    padding-bottom: 15px;
}
.container
{
    display: block;
    padding: 15px;
    min-width: 30%;
    min-height: 400px;

    background-color: rgb(13, 13, 85);
    border-radius: 25px;

}
form
{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
textarea
{
    background-color: rgba(0, 255, 255, 0.137);
    color: #fff;
    border: none;
    border-radius: 15px;
    width: auto;
    height: 310px;
    padding: 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    letter-spacing: 0.15px;
    word-spacing: 1.5px;
}
.btnn0
{
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px;
}
.btnn0 button:disabled
{
    background-color: rgba(255, 255, 255, 0.534);
    color: rgba(0, 0, 0, 0.404);
}
.btnn0 button
{
    background-color: rgb(35, 35, 240);
    color: #fff;
    padding: 5px 8px;
    border-radius: 15px;
    border: none;
}
.span
{
    display: flex;
    justify-content: center;

    width: 100%;
}
span
{
    color: #ff0000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: 500;
    letter-spacing: 0.25px;
    word-spacing: 1.7px;
}

@media only screen and (max-width: 600px){

    .container
    {
        width: 320px;
    }
    .btnn0 button
    {
        font-size: 20px;

    }
    textarea
    {
        font-size: medium;
        letter-spacing: 0.15px;
        word-spacing: 1.5px;
    }

}
