html {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    touch-action: manipulation;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'Open Sans', Verdana, Arial, Geneva, sans-serif;
    /*font-family: 'Poppins', Verdana, Arial, Geneva, sans-serif;*/
    /*font-family: 'Fira Sans', sans-serif*/
    background-color: #fff;
    color: #000;
    font-size: 14px;
    overflow-y: visible;
    transition: none;
}

.main {
    width: 1280px;
    margin: 100px auto;
}

.logo {
    margin-bottom: 10px;
}

.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grid-3col {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.button {
    background-color: #E00034;
    border-radius: 2px;
    height: 48px;
    min-width: 160px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.button:hover {
    cursor: pointer;
    background-color: #F50039;
}

.small {
    font-size: 12px;
}