/* 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, textarea, a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
/* 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 RESET ==== */

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    line-height: 1.2rem;
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

/* ==== HEADER ==== */

header {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #222;
}

header .logo {
    margin: 20px ;
}

nav.menu {
    margin: 20px;
}

nav.menu ul li {
    display: block;
    width: 100px;
    float: left;
    margin-left: 2px;
    text-align: center;
}

nav.menu ul li a {
    display: block;
    padding: 0 3px;
    text-decoration: none;
    color: white;
}

nav.menu ul li a:hover {
    color: black;
    background-color: white;
}

/* ==== FOOTER ==== */

footer {
    width: 100%;
    background-color: black;
    border-top: 2px solid #222;
}

footer>p {
    text-align: center;
    margin: 10px;
    font-size: 0.8rem;
    color: lightgray;
}

/* ==== MAIN CONTENT ==== */

main {
    flex: 1;
    overflow: hidden;
    background-color: black;
}

main>section {
    height: 100%;
    /* margin-top: 61px; */
    overflow: auto;
    padding: 20px;
    background-color: black;
    color: #ccc;
}

#About {
    /* background-color: black; */
    background-image: url('./images/bg/About_4K_1.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro {
    opacity: 1;
    width: 600px;
    height: 300px;
    text-align: center;
    font-size: 1.5rem;
    filter: invert(0.1);
    background-clip: text;
}

.intro>p {
    margin-top: 15px;
    text-shadow: 1px 1px #000;
    line-height: normal;
}

.intro>p>span {
    color: #fff;
    background: #666;
    text-shadow: 1px 1px 1px #000;
}

.intro a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

#Apps {
    
}

h1 {
    font-size: 2.5rem;
    margin: 15px 25px;
    text-align: center;
    line-height: normal;
}

h2 {
    font-size: 1.6rem;
    margin: 25px 50px;
    text-decoration: underline;
}

.platform {
    padding-top: 25px;
}

.singleApp {
    border: 2px solid #222;
    padding: 20px;
    margin: 15px auto;
    width: 80%;
}

.singleApp .logo {
    max-height: 150px;
}

.appHeader {
    display: flex;
}

.appHeader img {
    flex: 0;
    border: 1px solid #222;
}

.appHeader .headerText {
    flex: 1;
    padding-left: 15px;
}

.headerText {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.headerText h3 {
    font-size: 2rem;
    line-height: normal;
}

.appButtons {
    display: flex;
}
.appButtons.small {
    display: none;
}
.appButtons img {
    margin-right: 10px;
    border: none;
    max-height: 66px;
}
.appButtons a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    height: 66px;
    display: flex;
    align-items: center;
    border: 1px solid #222;
    padding-right: 10px;
    margin-right: 10px;
}

.appButtons .brand {
    font-weight: bold;
}
.appButtons .nativeButton {
    padding: 0;
}
.appDescription {
    margin-top: 15px;
}

.appScreenshots {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.appScreenshots img {
    width: 150px;
    height: auto;
    margin: 15px 15px 15px 15px;
}

#Donations {
        line-height: normal;
}

#Donations .content {
    width: 600px;
    height: 300px;
    text-align: center;
    font-size: 1.5rem;
    min-height: calc(100% - 100px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: -100px; */
}

#Donations .content p {
    margin: 25px 0;
}

#Donations .content a {
    text-decoration: none;
    color: white;
    border: 2px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#Contact {
    padding-bottom: 0;
}

#Contact .content {
    max-width: 80%;
    margin: 50px auto 0 auto;
}

form {
    width: 440px;
    margin: 0 auto;
}

#Contact label {
    display: block;
}

#Contact input {
    width: 300px;
    float: right;
    background-color: #ccc;
}

#Contact input[type="submit"] {
    margin: 25px auto;
    width: 100%;
    background: black;
    color: #ccc;
    border: 1px solid #ccc;
    padding: 5px;
    text-transform: uppercase;
    font-size: 1.2rem;
}
#Contact textarea {
    width: 440px;
    resize: none;
    background-color: #ccc;
}

#Contact .grecaptcha-badge {
    margin: 15px auto;
}

.social {
    width: 440px;
    background-color: black;
    margin: 100px auto 0 auto;
    text-align: center;
    padding: 10px;
}

.socialLinks {
    margin-top: 30px;
    width: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.socialLinks img {
    margin-right: 5px;
}

.social a {
    text-decoration: none;
    color: #ccc;
    font-size: 1rem;
    height: 66px;
    display: flex;
    align-items: center;
    border: 1px solid #222;
    padding-right: 10px;
    margin-right: 10px;
}

