*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mvd-white);
    color: var(--mvd-text);
}

.mvd-main {
    overflow: hidden;
}

.mvd-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.mvd-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.mvd-button:hover {
    transform: translateY(-2px);
}

.mvd-button:focus-visible {
    outline: 3px solid var(--mvd-grey);
    outline-offset: 4px;
}

.mvd-button--primary {
    background: var(--mvd-white);
    color: var(--mvd-blue);
}

.mvd-button--primary:hover {
    background: var(--mvd-grey-light);
    color: var(--mvd-blue-dark);
}

.mvd-button--secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: var(--mvd-white);
}

.mvd-button--secondary:hover {
    border-color: var(--mvd-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--mvd-white);
}