body {
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
    background-image: linear-gradient(
        to right bottom,
        #aab4c6,
        #76829b,
        #4e5a75,
        #2a3150,
        #060a28
    );
    background-attachment: fixed;
    color: #fff;
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 150px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

header p {
    font-family: Arial, sans-serif;
    font-size: 1em;
    margin: 10px 0 20px 0;
}

/* Navigation Bar */
nav {
    background: none;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Section */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: white;
    color: #333;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card .icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.card h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.card p {
    font-size: 0.9em;
    margin: 10px 0 20px;
}

.card button {
    background-color: #0b1034;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
}

.card button:hover {
    background-color: #606986;
}

/* BLURB */
.blurb {
    max-width: 620px;
    margin: 30px auto;
    text-align: center;

    font-size: 1.25em;
    font-weight: 70;
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);
    padding: 30px 40px;
    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}