.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: var(--primary-color);
    color: var(--text-light);
}
