header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header{
    display: flex;
    width: 660px;
    height: 100px;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 15px 10px;
    background-color: var(--primary-color);
    border-radius: 20px;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 0;
    box-shadow: 0 0 10px 2px var(--secondry-color);
}

.profile-picture img{
    width: 70px;
    border-radius: 90%;
    transition: border-radius 0.5s ease;
    transition: width 0.15s ease;
}

.profile-picture img:hover {
    border-radius: 15%;
    width: 80px;
}

.profile-picture{
    margin-left: 15px;
    margin-top: 3px;
}
.title{
    margin-right: 20px;
    text-decoration: none;
    color: var(--secondry-color);
    text-align: right;
    text-wrap: wrap;
    font-size: clamp(10px, 4vw, 20px);
}