* {
    box-sizing: border-box;
}

html,
body,
#root {
    width: 100%;
    margin: 0;
    padding: 0;
}

.page {
    width: 100%;
    min-height: 100vh;
}

.page > * + * {
    margin-top: 24px;
}

.page-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-header > h1 {
    text-align: center;
}

.page-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.count-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-button {
    width: 100px;
    height: 50px;
    border-radius: 12px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(77, 77, 250);
    color: white;
    font-size: 18px;
}
