@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-MediumItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

:root {
    --main-bg-color: rgb(242, 235, 223);
    --main-text-color: rgb(13, 13, 13);
    --primary-font: 'Roboto', sans-serif;
}

body {
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--primary-font);
}

h2 {
    margin-bottom: .1rem;
}

h3 {
    margin-bottom: .5rem;
}

ul {
    padding-left: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 1.25rem;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
}

#social-icon-container {
    display: flex;
}

.social-icon {
    font-size: 1.75rem;
    margin-top: 0.75rem;
    padding-right: 10px;
    text-decoration: none;
}

.container {
    padding: 1.5rem;
}

.name-banner {
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

.notecard {
    margin-bottom: 2rem;
}

.paragraph {
    padding-bottom: 1rem;
}

section {
    margin-bottom: 3rem;
}

#last-sub-section {
    margin-bottom: 2rem;
}

.tenure {
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1px;
    opacity: 0.6;
}

.title-company {
    font-weight: bold;
    margin-bottom: 2px;
}

.tool-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
    list-style-type: none;
    margin: 0;
}

.tool {
    background-color: #2C3E50; 
    color: white;
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 12px;
    text-align: center;
}

.resume-link:hover {
    color: #0267d3;
    transition: color 2s ease;
}

@media (min-width: 800px) {
    .container {
        width: 800px;
        margin: 0 auto;
    }
}
