body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Georgia, sans-serif;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #333;
}

/* Hide scrollbar */
body, html {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
}

/* Hide scrollbar in WebKit browsers */
body::-webkit-scrollbar {
    display: none;
}

body main section p.callable-contacts {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body main section p.callable-contacts a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    max-width: 100%;
    align-self: center;
    
}
body main section p.files a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

body main section p.files img {
    vertical-align: middle;
    max-width: 1.7rem;
    max-height: 1.7rem;
    -webkit-filter: invert(1);
    filter: invert(1);
}

body main section p.callable-contacts img {
    vertical-align: middle;
    max-width: 1.7rem;
    max-height: 1.7rem;
    -webkit-filter: invert(1);
    filter: invert(1);
    padding-right: 0.5rem;
}