/* style.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    color: #333;
}

.showcase {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff6347; /* Tomato color */
}

.text p {
    font-size: 1.2em;
    color: #555;
}
