*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #fbec20;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html,
body {
    height: 100%;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
button {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
    margin-top: 0;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
    color: #666;
}

/* class to set to the content block of each page */
.page {
    padding: 16px 8px 48px;
}
