.navbar {
    --bs-navbar-padding-y: 1rem;
}

.nav-link {
    font-size: 1rem;
}

.sidebar {
    padding-left: 20px;
    padding-right: 20px;
}

.foto-profile {
    width: 150px;
    max-width: 100%;
    display: flex;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    margin-right: 50px;
}

h2,
h3,
h4,
h5 {
    text-transform: capitalize;
    letter-spacing: inherit;
}

.h2-nama .edit-profile {
    visibility: hidden;
    cursor: pointer;

}

.h2-nama:hover .edit-profile {
    visibility: visible;
}

iframe {
    width: 100%;
    /* height: calc(100vh - (3rem + 120px)); */
    min-height: 100vh;
}

.ext-link h5 {
    font-size: 1.8rem;
}

.ext-link h6 {
    margin-top: 15px;
    letter-spacing: inherit;
}

.ext-link .btn {
    font-size: .7rem;
    --bs-btn-padding-x: 0.8rem;
    --bs-btn-padding-y: 0.5rem;
    margin-bottom: 5px;
}

.informasi a {
    color: rgb(255, 255, 255);
    background-color: rgb(177, 124, 0);
    text-decoration: none;
    border: 1px dashed #ccc;
    padding: 4px 8px;
    margin-right: 10px;
    margin-left: 2px;
    display: inline-block;
}

.informasi a:hover {
    background-color: rgb(4, 124, 199);
}

.modaltutup {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.689);
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    display: none;
}

.modaltutup.show {
    display: flex;
}