/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*{
	z-index: 0;
}
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;
	width: 100vw;
	height: 100vh;
}
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 css reset */

/*hide popup windows at first*/
#postForm {
    display: none;
	z-index: 4;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 80vw;
    max-width: 400px;
    border-radius: 15px;
}
#btnEnableNotifications{
	display:none;
}
#divSelfie {
	display:none;
}
#pickImage {
	display:none;
}
video, canvas {
	width: 512px;
	max-width: 100%;
	margin: auto;
}
img {
	width:20vh;
}
main{
	z-index: 0;
	background: linear-gradient(rgb(27, 7, 46), rgb(87, 23, 148));
	height: 100vh;
	position: fixed;
}
/* CSS for the post container */
section.container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1 fraction for the image column, 2 fractions for the text column */
    gap: 5%;
    margin: 1vh;
    background-color: white;
    width: 80vw;
    max-width: 600px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Left column (for image) */
section.container .left-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.container .left-column img {
    max-width: 100%;
    max-height: 100%;
}

/* Right column (for user input) */
section.container .right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.container h2,
section.container p {
    margin: 10px 0;
}

footer{
	height: 5vh;
	width: 100vw;
	position: fixed;
	z-index: 1;
}
#Xdelen{
	color:black;
}
#facebookdelen{
	color:black;
}
#snowfall {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  
  .snowflake {
	position: absolute;
	background-color: white;
	border-radius: 50%;
	opacity: 0.7;
	z-index: 1;
  }
  /* darken the background to make postform pull focus */
#postFormOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
}