body
{
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 2000px;
    background-color: rgb(32, 32, 32);
    background-image: url('/Ignazio/Images/cool-background.svg');
    background-repeat: repeat-y;
    background-position: center;
    background-size: cover;
}
.mid-photo-container {
    width: 20%;           /* Imposta la larghezza del 25% della pagina */
    aspect-ratio: 1 / 1;
    position: relative;   /* Posizionamento relativo per contenuti interni */
    border-radius: 50%;
    overflow: hidden;
    background-color: grey;
}

.mid-photo
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mid-name
{
    font-size: 2.5rem;
}

@media (max-width: 880px) {
    .mid-photo-container
    {
        width: 30%;
    }
}
@media (max-width: 340px) {
    .mid-photo-container
    {
        width: 40%;
    }
}