/*
   Created by CVPlayer Team on 11/27/20.
*/

/* Eric Meyer's CSS Reset */
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;
}
/* End of Eric Meyer's CSS Reset */

html {
    height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}
body {
    font-family: PingFangSC-Light, sans-serif;
    height: 100%;
    background-color: #BFB78F;
    background-image: linear-gradient(#BFB78F,#090907);
    background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: #72E0C7;
}

/* selected link */
a:active {
  color: #72E0C7;
}

.button {
    font-family: PingFangSC-Light, sans-serif;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 16px 32px;
    border: 1px solid #cc8af9;
    border-radius: 10px;
    background: #c46cff;
    background: -webkit-gradient(linear, left top, left bottom, from(#c46cff), to(#923afe));
    background: -moz-linear-gradient(top, #c46cff, #923afe);
    background: linear-gradient(to bottom, #c46cff, #923afe);
    box-shadow: rgba(0,0,0,0.5) 0px 2px 4px 0px;
    text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
    line-height: normal;
    font-size: 17pt;
    color: #ffffff;
    text-decoration: none;
}
.button:focus, .button:active {
    outline:none;
}
.button:active {
    background: #764199;
    background: -webkit-gradient(linear, left top, left bottom, from(#764199), to(#923afe));
    background: -moz-linear-gradient(top, #764199, #923afe);
    background: linear-gradient(to bottom, #764199, #923afe);
}

.wrapper {
    min-width: 375px;
    max-width: 1024px;
    margin: 0 auto;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
    padding-top: 32pt;
}


/* Middle
-----------------------------------------------------------------------------*/
.screenshot {
    
}
.appName
{
    padding-top:10px;
    text-align:center;
    line-height: normal;
    font-size: 20pt;
    color: white;
    text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
}

.description {
    padding: 0 36pt 16pt;
    line-height: 1.8;
    font-size: 12pt;
    color: white;
}
.desclaimer {
    padding: 0 36pt 24pt;
    line-height: normal;
    font-size: 11pt;
    color: white;
    text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
}
.download {
    padding: 0 36pt 156pt;
}



/* Footer
-----------------------------------------------------------------------------*/
.footer {
    margin: 0pt auto 0;
    min-width: 375px;
    max-width: 1024px;
    position: relative;
    text-align: center;
    font-size: 11pt;
    color: white;
    text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
}

