﻿.phone-blocks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 2vh;
}

h3 {
    text-align: center;
    padding: 1em;
}
.block{
    display:flex;
    flex-direction: column;

}
.item {
    display: flex;
    justify-content: space-between;
    gap: 10pt;
}
@media only screen and (max-width: 600px) {
    .phone-blocks {
        flex-direction: column;
        max-width: 90%;
    }
}
