* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background-color);
    color: var(--text-primary);
    font-family: var(--body-font);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: transparent;
}

section {
    padding: var(--section-padding) 0;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}

body {
    background: var(--background-color);
    color: var(--text-primary);
    font-family: var(--body-font);
    overflow-x: hidden;
    min-height: 100vh;
}