html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.body {
    background-color: #232323;
}

.main-content {

    color: white;
}

.Nav {
    display: flex;
    background-color: #88BF50;
    justify-content: flex-end;
    height: 52px;
    width: 100%;

}

.navbar {
    text-decoration: underline;
    color: #0D0D0D;
    text-align: end;
    margin-left: 4px;
    margin-right: 12px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
    margin-bottom: 0;
    padding-right: 24px;
}

.name {
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #88BF50;
    letter-spacing: 1px;
    font-size: 2rem;
    white-space: nowrap;
    margin-bottom: 12px;

}

.resume-name {
    margin-top: 24px;
}

.logo-right {
    position: absolute;
    top: 64px;
    right: 24px;
}

.logo-right img {
    width: 300px;
    height: auto;
}

.about_me {
    font-family: Oswald, sans-serif;
    width: 450px;

}

.foto {
    width: 212px;
    height: 132px;
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 8px;
    object-position: center center;
}

.tarjeta {
    width: 600px;
    height: auto;
    border: 3px solid #7CAE7A;
    border-radius: 8px;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
    margin: 24px auto;
}

.card-title {
    margin-bottom: 12px;
}

.card-name {
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #88BF50;
    letter-spacing: 1px;
}

.bio {
    margin-top: 16px;
    font-size: 16px;
}

.btn-a {
    text-decoration: none;
    color: #232323;
}

.linkedin-a {
    text-decoration: underline #232323;
    color: #7CAE7A;
}

.button {
    background-color: #88BF50;
    border-color: #7CAE7A;
    color: #232323;
    border-radius: 12px;
}

.button:hover,
.button:focus,
.button:active {
    background-color: #88BF50;
    border-color: #6AAE68;
    color: #232323;
}

.qrcode {
    display: flex;
    justify-self: flex-end;
    width: 64px;
    height: auto;
}

.resume-content {
    margin-left: 12px;
}

@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-right {
        position: static;
        margin-top: 12px;
    }

    .logo-right img {
        max-width: 180px;
        height: auto;
    }

    .nav-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .Nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        background-color: #88BF50;
        padding: 8px 0;
    }

    .navbar {
        text-decoration: underline;
        color: #0D0D0D;
        flex: 1 1 auto;
        text-align: center;
        padding: 8px;
        font-size: 1rem;
        margin: 0;
    }


    .foto {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }

    .tarjeta {
        width: 100%;
        padding: 12px;
    }

    .name {
        font-size: 1.5rem;
    }

    .bio {
        margin-top: 12px;
    }

    .qrcode {
        margin-left: auto;
        margin-right: 0;
    }

    .me_p {
        text-align: center;
        margin: 0 auto;
        font-size: 0.75rem;
    }
}