* {
    box-sizing: border-box;
}

img,
svg {
    line-height: 0;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--primary-font-color);
    background: var(--body-bg);
}

input,
select,
textarea {
    font-size: 17px;
}

html body,
html body * {
    font-family: "Inter", sans-serif;
}

main {
    padding-top: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
}

a.btns,
a.dark-btns {
    transition: all 300ms ease-in-out;
}

a.btns:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

a.dark-btns:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.section-tabs-outer {
    max-width: 100%;
    overflow: auto;
}

.section-tabs {
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    justify-content: center;
}

.section-tabs a {
    background: #F0F0F0;
    color: inherit;
    text-decoration: none;
    height: 48px;
    border-radius: 24px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tabs a:hover,
.section-tabs a.active {
    background: var(--primary-button-color);
    color: #fff;
}

footer {
    background: var(--dark-grey-bg);
    color: #FFF2F2;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
    .section-tabs {
        justify-content: flex-start;
    }
}