* {
    margin: 0;
    box-sizing: border-box;
}

html {
    display: flex;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 1rem;
}

body {
    color: #333;
}

header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin: 0 1.5rem;
}

header h2 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 1rem;
}

header .email {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

header span {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (width <= 34rem) {
    header .blurb-wide {
        visibility: hidden;
        height: 0;
    }

    header .blurb-narrow {
        visibility: visible;
    }
}

@media (width > 34rem) {
    header .blurb-wide {
        visibility: visible;
    }

    header .blurb-narrow {
        visibility: hidden;
        height: 0;
    }
}

.main-content {
    display: flex;
}

.sidebar ul {
    padding-left: 0;
    margin-bottom: 2rem;
}

.sidebar li {
    list-style: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.content {
    padding: 2rem 1.5rem 2rem 2rem;
}

@media (width > 60rem) {
    body {
        width: 60rem;
    }

    .sidebar {
        width: 30%;
        border-right: 0.2rem solid #e9ecef;
        padding: 2rem 1.5rem;
    }

    .content {
        width: 70%;
    }
}

@media (width <= 60rem) {
    .main-content {
       flex-direction: column-reverse;
    }

    .sidebar {
        padding: 0 2rem;
    }
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.content li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

.main-content h2 {
    font-size: 1.1rem;
    color: #495057;
    border-bottom: 2px solid #495057;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.job {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.2rem;
    gap: 0 1rem;
}

.job-title {
    font-weight: bold;
    color: #2c3e50;
}

.company {
    font-style: italic;
    color: #666;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.education {
    color: #2c3e50;
    font-size: 0.95rem;
}
