* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: JetBrains Mono, Arial, sans-serif;
    overscroll-behavior: none;
}

body {
    background-color: #FAF3E0;
}

.container {
    display: flex;
    width: 100%;
    background-color: #FAF3E0;
    max-width: 1100px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.sidebar {
    color: #000;
    width: 100%;
    margin: 20px auto;
    padding: 20px 30px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.content {
    width: 100%;
    align-items: center;
    padding: 30px 20px;
}

.profile-image {
    width: 250px;
    height: 250px;
    display: block;
    border: 5px solid #000;
    margin: 0 auto;
    border-radius: 100%;
    object-fit: cover;
}

.profile-name {
    text-align: center;
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 28px;
    margin-top: 20px;
}

.profile-title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 0px;
    padding-bottom: 20px;
}

.content-section-title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section-text {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
}

span {
    font-weight: 700;
    font-size: 18px;
}

ul {
    margin-left: 18px;
}

li {
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    text-align: justify;

}

.footer {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 500;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    font-size: 14px;
    max-width: 120px;
    background-color: #FAF3E0;
    text-transform: uppercase;
    border: 2px solid #000;
    border-radius: 20px;
}

.link-button:hover {
    background-color: #000;
    color: #FAF3E0;
}

.link-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 5px;
}

.link-buttons-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 50%;
}

.btn-align-left {
    justify-content: flex-start;
    align-items: flex-start;
}

.btn-align-right {
    justify-content: flex-end;
    align-items: flex-end;
}

hr {
    border: 1px solid #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hid1 {
    display: block;
}

.hid2 {
    display: none;
}

@media (width < 768px) {

    .link-buttons-row {
        flex-direction: column;
    }

    .hid1 {
        display: none;
    }

    .hid2 {
        display: block;
    }

}