* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    height: 100vh;
    background: radial-gradient(circle at top left, #9b90db, #000);
    color: #fff;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;        /* vertical center */
    padding-left: 30%;
}

.content {
    max-width: 600px;
}

h1 {
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}
