/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/*--------------------------------------------------------------------------------------------------------------- */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    font-family: 'Quicksand', sans-serif;
    justify-content: center;
    align-items: center;
}

.navbar {
    flex: 0 1 auto;
    font-size: large;
}

.navbar-brand .logo {
    height: auto;
    width: 25vw;
    max-width: 240px;
    min-width: 140px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.navbar-nav>li {
    padding-left: 15px;
    padding-right: 15px;
}

#content {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    gap: 20px;
}

.demo-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #152FA3;
    text-align: center;
    margin-bottom: 20px;
}

.video-wrapper {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.demo-description {
    text-align: center;
    max-width: 600px;
}

.demo-description p {
    font-size: x-large;
    text-align: center;
    line-height: 32px;
    padding: 10px;
}

b {
    font-weight: bold;
} 