* {
    box-sizing: border-box;
}

html,
body {
    /* scroll-snap-type: y mandatory; */
    /* Enable vertical snap */
    /* scroll-behavior: smooth; */
    /* Smooth scrolling */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}

input,
textarea {
    font-family: inherit;
}

::placeholder {
    color: #b1b1b1;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
}

a,
button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: 'Inter';
    padding: 0;
    outline-color: #4d90fe;
    border: unset;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: unset;
    font-size: 16px;
    line-height: 1.2;
    background: unset;
}

a {
    color: unset;
    font-family: inherit;
    letter-spacing: 1.4px;
}

img {
    max-width: 100%;
}

#root {
    min-height: calc(100vh);
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

