@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Reset CSS */
html,
body,
div,
h1,
h2,
h3,
p,
a,
img,
ul,
ol,
li,
form,
input,
button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* Set a base font and some default styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

a {
    text-decoration: none;
    color: #0078d4;
}

/* Add your own custom styles below this line */

* {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

header {
    border-bottom: 1px solid #CECECE;
    background-color: #f7f6f6;
    padding: 1rem;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 2rem;
    color: #A34C00;
}

button {
    padding: 10px 20px;
    background-color: #ecd8cd;
    color: #A34C00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    width: 35%;
}


button:hover {
    background-color: #f1cab4;
}

ul {
    list-style-type: none;
}