.paragraph-container {
    margin-top: 30px; /* Adjust the value as needed */
    background: linear-gradient(135deg,rgb(248, 170, 172), #fad0c4);
    padding: 20px;
    border-radius: 10px;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.paragraph-container h1 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.paragraph-container p {
    font-size: 18px;
    margin: 10px 0;
    color: #222;
}

.paragraph-container strong {
    color: #c0392b;
}

.paragraph-container em {
    color: #2980b9;
    font-style: italic;
}

.paragraph-container blockquote {
    background: rgba(255, 255, 255, 0.5);
    border-left: 5px solid #ff6b6b;
    padding: 10px;
    margin: 15px 0;
    font-style: italic;
    color: #444;
}