html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}


/* custom styles */

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

body {
    background-color: #fdefef;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    margin-top: 15vh;
    text-align: center;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
}

#question-box {
    max-width: 800px;
    margin: 10vh auto;
    text-align: center;
}

#question-text {
    font-size: 36px;
}

#questions-buttons {
    margin-top: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-btn {
    font-size: 28px;
    /* background-color: #c2c2c2;? */
    border: 2px solid grey;
    padding: 20px 70px;
    border-radius: 10px;
}

h2 {
    font-size: 44px;
}

#thanks {
    padding-top: 5vh;
    font-style: italic;
    font-size: 22px;
}

#new-qstns {
    padding-top: 2vh;
}

#content-box {
    max-width: 600px;
    margin: 10vh auto;
    text-align: center;
}

form {
    border: 0.1px solid rgb(96, 96, 96);
    border-radius: 5px;
    padding: 55px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input {
    display: block;
    background: none;
    border: none;
    background-color: #ffd8d8;
    padding: 25px 40px;
}

#login-btn {
    width: 100%;
    background-color: #f3d4c7;
    padding: 10px 0;
}

#admin-box {
    text-align: center;
    margin-top: 5vh;
    font-size: 22px;
}

#add-question {
    padding: 15px 45px;
    background-color: #9cc763;
    border-radius: 5px;
    font-size: 22px;
}
