body {
    margin: 0%;
    background-color: rgba(220, 220, 220, 0.415);
}
.top {
    display: flex;
    justify-content: center;
}

h1{
    font-size: 26px;
    font-weight: 800;
    margin: 10px;
}
h3{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
p{
    margin-left: 1px;
}
.content {
    border: 1px solid black;
    background-color: white;
    padding: 12px;
    font-size: 17px;
    margin-top: 110px;
    border-radius: 20px;
    font-family: 'Manrope';
}





.Name-Title {
    text-decoration: none;
    color: black;
}


.Header h1 {
    margin: 0;
    font-size: 24px;
}

.Header h3 {
    margin: 0;
    font-size: 18px;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    display: none;
    background-color: #525252;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
}


.wrap-imgs {
    margin: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
}


.img-b {
    position: relative;
    width: 100%;
    border-radius: 8px;

    margin-bottom: 40px;
}

.added-imgs {

    margin: 110px 2% 0px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}




a{
    text-decoration: underline;
    color: rgb(0, 0, 0);
    font-weight: 500;
}
a:hover {
    color: rgb(0, 0, 0);
    font-weight: 800;
}
.Footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: rgb(230, 230, 230);
    font-family: 'Manrope';
}

.per-info {
    border-top: 3px solid black;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 17px;
    font-size: 16px;
}
.info {
    text-align: center;
}

@media (max-width: 1020px) {
    .img-b {
        width: 180px;
    }
}

@media (max-width: 600px) {
    .img-b {
        width: 70px;
        max-width: 100%;
    }
}
@media (max-width: 374px) {
    .content {
        width: 230px;
        padding: 5px;
        margin-left: 1%;
    }
}



.tooltip{
    position: absolute;
    top: 0;
    margin-top: 30px;
    text-align: center;
    padding: 5px;
}
.tooltip:hover{
    text-decoration: underline;
    background-color: #c6c6c6;
    border-radius: 10px;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: rgb(87, 87, 87);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    margin-left: 130px;

    /* Position the tooltip */
    position: absolute;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}