/* styles.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    /*font-family: 'Arial, sans-serif';*/
    font-family: 'Poppins', sans-serif;
}

.container {
    text-align: center;
}

.stylish-text {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.stylish-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.stylish-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.tagline {
    font-size: 1.5rem;
    color: #555;
    margin-top: 20px;
}
