* {
  box-sizing: border-box;
}

body {
  font-family: "Verdana", san-serif;
  padding: 20px;
  color: #ffffff;
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #303030;
  background-image: linear-gradient(#202020, #505050);
}

/* Center website */
.main {
  max-width: 980px;
  margin: auto;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 8px -16px;
}

/* Padding between columns */
.row,
.row > .column {
  padding: 8px;
}

/* Create 3 equal columns that float next to each other */
.column {
  float: left;
  width: 33%;
}

.column a:link, .column a:visited, .column a:hover, .column a:active {
  text-decoration: none;
  color: #202020;
}


/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: #e0e0e0;
  padding: 16px;
  border-radius: 16px;
}

.content.screensaver {
	background-color: #F0DEC1;
}
.content.bingo {
	background-color: #AED3FD;
}
.content.photos {
	background-color: #E1E7B4;
}

h3 {
	font-size: 1.25em;
	font-style: bold;
	margin-top: 0.5em;
	margin-bottom: -0.5em;
}

.header {
	font-size: 1.25em;
}

.footer {
	font-size: 0.75em;
}
.footer a:link, .footer a:visited, .footer a:hover, .footer a:active {
  color: #ffffff;
}

.img-preview {
	width: 100%;
	border: solid 2px #606060;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

