
#name {
    color: whitesmoke;

    background-color: #580000;
    padding: 20px;
    margin-top: 40px;
}

#name h1 {
    font-size: 50px;
    text-align: center;

    font-family: 'Cambria Math';
    font-weight: 100;
}

#content {
    border: solid black 3px;
    margin-top: 0px;
    margin: 50px;
    border-top: none;

    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "a b";
    gap: 2rem;

    font-family: 'Century Gothic';
}

#body-content {
    grid-area: a;

    display: flex;
    flex-direction: column;

    margin-left: 20px;
}

#shoulder {
    grid-area: b;
    display: flex;
    flex-direction: column;
}

#experience h2 {
    margin-bottom: -2px;
}

#experience h3 {
    margin-bottom: -10px;
}

#experience p {
    margin-bottom: -4px;
}

#experience ul, #experience li {
    font-size: medium;
}

span {
    display: flex;
    align-items: center;
}

span img {
    width: 40px;
    height: auto;
}

#contact h2 {
    margin-bottom: -5px;
}

footer {
    font-family: 'Century Gothic';
    text-align: center;
}