@font-face {
    font-family: 'JetBrainsMono';
    src: url('jbm.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'JetBrainsMono';
    src: url('jbm-bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}
body {
    background-color: #f4f4f9;
    color: #333;
    font-family: 'JetBrainsMono', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.container {
    width: 80%;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background-color: #3e3e3e;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-content {
    flex-grow: 1;
}
.header-content h1 {
    margin: 0;
    font-size: 36px;
    color: #2c3e50;
}
.header-content p {
    margin: 5px 0;
    font-size: 18px;
    color: #7f8c8d;
}
.section-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}
.section {
    margin-bottom: 25px;
}
.section ul {
    list-style-type: none;
    padding: 0;
}
.section ul li {
    margin-bottom: 15px;
}
.section ul li h3 {
    margin: 0;
    font-size: 20px;
    color: #000;
}
.section ul li p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}
.bullet-point {
    padding-left: 1.25em;
    text-indent: -1.25em;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skills-list li {
    background-color: #ecf0f1;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 16px;
    color: #34495e;
    font-weight: bold;
}
.contact-info {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #5e8480;
}
.contact-info div {
    margin-bottom: 10px;
}
a {
    color: #4e6b86;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .header-content h1 {
        font-size: 28px;
    }
    .header-content p {
        font-size: 16px;
    }
    .section-title {
        font-size: 20px;
    }
    .section ul li h3 {
        font-size: 18px;
    }
    .skills-list {
        justify-content: center;
    }
}
