* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    letter-spacing: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Cera Pro', sans-serif;
}

main {
    flex: 1;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
input,
textarea {
    outline: none;
    font-family: inherit;
    border: none;
    background: transparent;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('/font/Cera-Pro-Regular.woff2') format('woff2'),
        url('/font/Cera-Pro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('/font/Cera-Pro-Bold.woff2') format('woff2'),
        url('/font/Cera-Pro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('/font/Cera-Pro-Medium.woff2') format('woff2'),
        url('/font/Cera-Pro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('/font/Cera-Pro-Black.woff2') format('woff2'),
        url('/font/Cera-Pro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}