h3 {
    text-align: left;
    color: white;
}

body {
    background-color: rgb(30 30 30);
    font-family: 'Poppins', sans-serif;
    font-family: 'Nunito Sans';
}

a {
    text-decoration: none;
    color: lime;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: rgb(48, 48, 48);
}

#profile-container {
    border-radius: 8px;
    margin-left: 26%;
    box-shadow: 0 0px 11px 1px rgb(10 10 10);
    padding: 1rem;
    height: 10%;
    width: 50%;
    align-items: center;
    text-align: right;
    background-color: rgb(40 40 40);
    margin-top: 3%;
    margin-bottom: 12%;
}

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background-color: rgb(80 80 100);
    border-radius: 12px;
}

hr {
    border-radius: 13px;
    border: solid 0.5px rgb(2, 143, 2);
}

 ::-webkit-scrollbar-thumb {
    background: rgb(12, 200, 12);
    border-radius: 12px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 160, 0);
    border-radius: 12px;
}

#profile-container dt figcaption {
    color: rgb(16, 240, 16);
    text-align: center;
}

#profile-container dt {
    text-align: center;
}

#profile-container figure div {
    border-radius: 100%;
    overflow: hidden;
    margin-left: 31%;
    height: 195px;
    width: 195px;
    box-shadow: 0 0px 10px 1px rgb(20 20 20);
}

#profile-container figure div img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#profile-container figure div:hover img {
    -moz-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    margin-top: 20px;
    transform: scale(1.8);
}

.content {
    text-align: left;
    color: white;
}

.tooltip {
    margin-bottom: -12px;
    color: lime;
}

.ul-content {
    color: white
}

.ul-content li {
    color: white
}

#wrap-image {
    overflow: hidden;
    height: 350px;
}

#wrap-image img {
    margin-left: -47rem;
    filter: saturate(120%);
}

@media (max-width: 700px) {
    #profile-container {
        padding: 0.8rem;
        width: 90%;
        margin: 0;
        margin-left: 2%;
        margin-right: 2%;
    }
    #profile-container figure div {
        position: relative;
        margin: 0 auto;
    }
}