* {
    padding: 0;
    margin: 0;
    border: none
}

*, ::after, ::before {
    box-sizing: border-box
}

a, a:hover, a:link, a:visited {
    text-decoration: none
}

aside, footer, header, legend, main, nav, section {
    display: block
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit
}

ul, ul li {
    list-style: none
}

img {
    vertical-align: top
}

img, svg {
    max-width: 100%;
    height: auto
}

address {
    font-style: normal
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent
}

input::-ms-clear {
    display: none
}

button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background: 0 0;
    cursor: pointer
}

button:active, button:focus, input:active, input:focus {
    outline: 0
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

label {
    cursor: pointer
}

body {
    font-family: Inter, sans-serif;
    background-color: #EFEFF4;
    user-select: none;
}

#app {
    height: 100vh;
    width: 100vw;
}

.header {
    display: flex;
    padding: 15px;
    height: 70px;
}

.header .list {
    display: flex;
    overflow: scroll;
    white-space: nowrap;
    scrollbar-width: none;
    margin-right: 15px;
}

.header .list > *:not(:last-child) {
    margin-right: 10px;
}

.header .right-side {
    margin-left: auto;
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.header .right-side > *:not(:first-child) {
    margin-left: 15px;
}

.header .info {
    color: #929292;
    display: flex;
}

.header .info > *:not(:first-child) {
    margin-left: 15px;
}

a.button {
    background-color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 28px;
    color: black;
    font-weight: 500;
}

a.button.selected {
    background-color: #7187FF;
    color: #FFFFFF;
}

a.button.circle {
    border-radius: 50%;
    line-height: 0;
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.0rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}