.circle-photo-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px var(--violet);
}

.circle-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#profile{
    border-radius: 5px;
    box-shadow: 0 0 10px var(--violet);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
}
#photo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
#info{
    padding: 0 20px;
    flex-grow: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#fullname{
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}
#username{
    text-align: center;
    opacity: 0.5;
}
#visited-time{
    text-align: center;
    margin-top: 5px;
    opacity: 0.5;
}
#tried-task-count{
    text-align: center;
    margin-top: 5px;
    opacity: 0.5;
}
#goal{
    text-align: center;
    margin-top: 5px;
}