@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
        src: local('Inter-Regular'),
        url('../../fonts/Inter-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-weight: 500;
    font-style: normal;
        src: local('Inter-Medium'),
        url('../../fonts/Inter-Medium.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-weight: 600;
    font-style: normal;
        src: local('Inter-SemiBold'),
        url('../../fonts/Inter-SemiBold.ttf');
    font-display: swap;
}

html {
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
}

* {
    box-sizing: inherit;
}

ul,
ol {
    margin: 0;
}

ul li,
ol li {
    list-style: none;
}

body {
    font-family: 'Inter', sans-serif;
    position: relative;
}