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;
}

html
{
    background-color: rgb(149, 25, 22);
}

#banner
{
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: block;
    position: relative;
}

#banner img
{
    position: absolute;
    height: 120%;
    top: 0;
    width: 100%;
    object-fit: cover;
}

#banner h1
{
    font-family: 'Sniglet', sans-serif;    
    position: absolute;
    color: white;
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    top: 52%;
    width: 100%;
    text-align: center;
}

#banner h2
{
    font-family: 'Sniglet', sans-serif;
    font-weight: 400;
    font-size: 4em;
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 82%;
}

div, a
{
    color: white;
}

a 
{
    cursor: pointer;
    font-style: normal;
    text-decoration: none;
}

a:hover
{
    color: rgb(209, 88, 89);
}


#infoPanel, #contactPanel
{
    color: white;
    font-family: 'Sniglet', sans-serif;
    font-weight: 400;
    font-size: 3em;

    text-align: center;
    margin-bottom: 1em;
}

#descriptionPanel
{
    width: 600px;
    text-align: justify;

    color: white;
    font-family: 'Sniglet', sans-serif;
    font-weight: 400;
    font-size: 2em;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    margin-top: 1em;
}

#freeTrialPanel
{
    color: white;
    font-family: 'Sniglet', sans-serif;
    font-weight: 800;
    font-size: 4em;

    text-align: center;
    margin-bottom: 1em;
    margin-top: 1em;
}

#infoPanel
{
    margin-top: 1em;
}

.blockPanel
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.blockPanel div
{
    width: 6em;
    height: 6em;
    background-color:  rgb(209, 88, 89);
    border-radius: 0.2em;
    margin: 1em;
    padding: 0.5em;
    color: white;
/*    display: flex;
    flex-direction: column;
    justify-content: space-evenly;*/
}

#contactPanel img
{
    height: 1em;
    margin-bottom: -8px;
    margin-right: 0.5em;
}

i
{
    margin-bottom: 0.2em;
    color: white;
    font-size: 2em;
}

#contactFormPanel
{
    color: white;
    font-family: 'Sniglet', sans-serif;
    font-weight: 400;
    font-size: 2em;

    margin-bottom: 2em;
}

#contactForm
{
    background-color: rgb(209, 88, 89);
    border-radius: 10px;

    padding: 0.5em;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#contactForm input
{
    inset: none;
    border: none;
    font-family: 'Sniglet', sans-serif;
    background-color: white;
    color: rgb(149, 25, 22);
    font-size: 1em;
}

#OKBtn
{
    margin-top: 0.5em;
    font-style: ;
    cursor: pointer;
    font-weight: 800;
    font-size: 2em;
    text-align: center;
}

#OKBtn:hover
{
    color: rgb(149, 25, 22);
}