body {
    line-height: 1.6;
    font-size: 16px;
}

h1 {
    font-family: 'cnvctn';
    letter-spacing: .12em;
}

.container {
    margin: 15 auto;
    margin-left: 80px;
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 700px;
}

p {
    max-width: 700px;
    font-size: 16px;
}

h3 {
    padding: 0px;
    margin-top: 0px,
}

:root {
    --link-accent: hsl(257, 100%, 50%);
}

/* vivid violet */

a {
    position: relative;
    color: var(--link-accent);
    text-decoration: none;
    /* kill default underline              */
    font-weight: 500;
    /* subtle weight bump so text stands out */
}


a:hover {
    color: #666;
    text-decoration: underline;
}

ul {
    margin-top: 0px;
    line-height: 1.6;
    max-width: 650px;
}

.header {
    position: relative;
    margin-bottom: -20px;
}

.subtitle {
    font-size: 1.6em;
    /* Adjust as necessary */
    margin-top: 0px;
}

.header-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically */
}

@media screen and (max-width: 768px) {
    .container {
        margin: 20px auto;
        margin-left: 32px;
        margin-right: 16px;
    }

    .header-icon {
        left: -40px;
    }
}

@font-face {
    font-family: 'cnvctn';
    /* any name you like */
    src: url('../fonts/RSMSIntra.var.woff2') format('woff2'),
        url('../fonts/rsmsintra.var-webfont.woff') format('woff');
    /* match the actual font weight */
    font-style: normal;
    font-display: block;
    font-stretch: 60%;
    font-weight: normal;

}