@font-face {
    font-family: 'Better_VCR_6.1';
    src: url(../fonts/Better_VCR_6.1.ttf);
}

html, body {
    background-color: black;
    color: white;
    font-family: 'Better_VCR_6.1';
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
    color: white;
}

header {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 7%;
}

h1 {
    font-size: 5rem;
}

h2{
    font-size: 3rem;
    margin-top: -0.7em;
}

.services-list {
    margin-top: 3em;
    font-size: 1.7rem;
    text-align: center;
}

.list-center {
    margin-top: -1.5em;
    text-align: center;
}

.list {
    display: inline-flex;
    border: 3px solid;
    border-radius: 15px;
    max-width: 800px;
    height: auto;
    overflow: hidden;
}

.list-scroll {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    padding: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.list-scroll::-webkit-scrollbar {
    height: 10px;
}

.list-scroll::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.list-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 122px;
    border: 2px solid;
    border-radius: 15px;
    padding: 5px;

    transition: 0.2s ease;
}

.list-block:hover {
    transform: scale(1.07);
    box-shadow: 0 0 12px white;
}

.list-block img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.list-block p {
    margin: 0;
    padding: 0;
    line-height: 1.1;
}