body {
    font-family: Arial, sans-serif;
    padding: 10px;
}

.text-shadow {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 20px 6px #aaaaaa;
    margin-bottom: 50px;
}

.text-normal {
    font-size: 16px;
    text-align: left;
}

.text-capitalize {
    text-align: center;
    text-transform: capitalize;
}

.text-uppercase {
    text-align: right;
    text-transform: uppercase;
}

.text-lowercase {
    text-align: left;
    text-transform: lowercase;
}

.text-dropcap::first-letter {
    font-size: 40px;
    font-weight: bold;
}

.text-dropcap::first-line {
    font-weight: bold;
}