html {
    font-family: sans-serif;
}

/* Your CSS below here */

p {
    margin: auto;
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 1.1rem;
    color: red;
    text-shadow: 1px 1px 1px black;
    background-color: red;
    border-radius: 13px;
    border: solid 1px rgb(100, 0, 0);
    background-image: linear-gradient(to right bottom, rgba(0,0,0,0), rgba(0,0,0,0.2) 30%);
    box-shadow: 2px 2px 3px 1px black, inset 1px 1px 3px 1px rgba(255, 255, 255, .5), inset -1px -1px 3px 1px rgba(0,0,0,.5);
}