body > h1
{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
main
{
    margin: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card
{
    background-color: #d0ebff;
    border: solid 3px #a5d8ff;
    margin: 20px;
    padding: 20px;
    border-radius: 20px;
    width: 500px;
    height: 500px;
}

.card > h2
{
    padding-left: 40px;
}

.card > textarea
{
    overflow:auto;
    background-color: transparent;
    border:none;
    width: 100%;
    height: 81%;
    resize: none;
    font-size: 1.4em;
    outline: none;
}

.card > textarea:focus
{
    border: none;
    outline: none;
    box-shadow: none;
}



@media screen and (max-width:500px)
{
    .card
    {
        height: 700px;
    }
}