.profileInfo {
    position: relative;
    /* top: 0px;
    left: 0px; */
    width: 100%;
    /* height: 100vh; */
    /* background-color: #333333; */
    color: white;
    overflow-y: scroll;
}

.profileInfo::-webkit-scrollbar {
    display: none;
}


.profilePicContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profilePic {
    position: relative;
    border-radius: 50%;
    width: 270px;
    margin: 20px;
}

.profileContent {
    margin-left: 20px;
}

.contact-info-item:hover {
    color: #a5d4ff;
}

.skill {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.skillLevel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgb(102, 102, 102);
    border: 1px solid white;
    border-radius: 50%;
    margin-left: 2px;
}

.dot-filled {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    margin-left: 2px;
}

.cv-date {
    font-weight: lighter;
}

.skill-rectangle-group {
    display: flex;
    flex-wrap: wrap;
}

.skill-rectangle {
    position: relative;
    border: 1px solid white;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 0.5em;
    margin-right: 6px;
    margin-bottom: 6px;
}

.skill-rectangle-fill {
    position: relative;
    color: black;
    background-color: white;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 0.5em;
    margin-right: 6px;
    margin-bottom: 6px;
}

.cv-item {
    background-color: #d3d3d3;
    border-radius: 1em;
    padding: 1em;
    color: black;
    /* box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.5); */
}
.publication-item {
    background-color: #d3d3d3;
    border-radius: 1em;
    padding: 1em;
    color: black;
    /* box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.5); */
}

#scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #333333;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 0.5em;
    font-size: 18px;
    text-align: center;
}

#scroll-top-btn:hover {
    background-color: #f1f1f1;
    color: black;
    font-size: 20px;
}