* {
    margin: 0px;
    padding: 0px;
    user-select: none;
}


.container {
    border: 02px solid black;
    border-radius: 05px;
    text-align: center;
    font-size: 20px;
    margin: 50px;

    h1 {
        margin: 20px;
    }

    input {
        height: 50px;
        width: 350px;
        text-align: center;
        font-size: 20px;
    }

    textarea {
        width: 350px;
        text-align: center;
        font-size: 20px;
    }

    #submit {
        height: 50px;
        width: 350px;
        border: 0px;
        background-color: rgba(140, 156, 156, 0.733);
        transition: all 0.5s;
        margin-bottom: 20px;
        cursor: pointer;
    }

    #submit:hover {
        transform: scale(1.05);
    }
}