/* body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-image: url('../images/nicebg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    font-display: swap;
} */
body{

    font-family:"IBM Plex Sans",sans-serif;

    /* color:#e5e7eb; */

    line-height:1.7;

    background-color:#1e3a5f;

    background-image:

        radial-gradient(
            circle at top left,
            rgba(96,165,250,.22),
            transparent 40%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(56,189,248,.16),
            transparent 40%
        ),

        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:
        auto,
        auto,
        48px 48px,
        48px 48px;

    background-attachment:fixed;

}
.main-content {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    display: flex;
    margin-bottom: 30px;
}

#sidebar,
.content {
    border-radius: 10px;
}

#sidebar {
    width: 300px;
    background-color: #fff;
    width: 25%;
    padding: 15px;
}

.content {
    background-color: #fff;
    margin-left: 20px;
    width: 75%;
    padding: 25px;
}
.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.name {
    font-size: 24px;
}

.work {
    font-size: 16px;
    font-weight: 400;
    background-color: #f3f6f6;
    border-radius: 5px;
    padding: 12px;
    margin-top: 10px;
}

.networks {
    display: flex;
    gap: 5px;
}

.linkedin,
.github {
    margin-top: 5px;
    background-color: #f3f6f6;
    border-radius: 50%;
    padding: 10px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}
.border-top {
    border-top: 1px solid #e3e3e3;
}
.job-info {
    background-color: #f3f6f6;
    border-radius: 5px;
    padding: 25px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.job-info .job-info-data {
    display: flex;
    padding-top: 10px;
    padding-bottom: 15px;
    gap: 10px;
}

.contact-btn {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 22px;
    text-align: center;
    color: #000;
    border-radius: 5px;
    background-color: #d7eeff;
    text-decoration: none;
    width: 80%;
}

.contact-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.contact-small {
    padding: 0 10px;
    font-size: 16px;
    width: 100%;
}

.contact-btn:hover {
    background-color: #D4F6FF;
    cursor: pointer;
}

.copy {
    display: flex;
    justify-content: end;
    color: #000;
    margin-top: 10px;
}
.logo-container {
    background-image: url('../images/lcv-logo2.webp');
    background-size: contain;
    width: 200px;
    height: 200px;
    background-size: cover;
    border-radius: 50%;
    margin-top: -35px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e3e3e3;
}

.networks a, .project-link{

    display:inline-block;

    margin-top:18px;

    margin-bottom:22px;

    font-size:.95rem;

    font-weight:500;

    color:#2563eb;

    transition:.2s;

}

.networks a, .project-link:hover{

    color:#1d4ed8;

    text-decoration:underline;

}
.btn-primary{

    background:#111827;

    color:white;

    padding:14px 26px;

    border-radius:6px;

}

.btn-primary:hover{

    background:#1f2937;

}
a{

    text-decoration:none;

    color:inherit;

}
@media (max-width: 1200px) {
    body {
        background-color: #F1F0E8;
        background-image: none;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .main-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    #sidebar,
    .content {
        width: 90%;
        margin: 0 5px;
    }

}