@charset "utf-8";
/* CSS Document */
@media (max-width: 550px) {
	.logoOuter {
        width: 100%;
    }
    #topbar {
        margin-top: 5px;
    }
    .button {
		font-size: 25px;
    }
    
    #imgs {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        margin-top: 7px;
        margin-bottom: 7px;
    }
}
@media (min-width: 550px) {
	.button {
		font-size: 30px;
		margin: 0px 10px 0px 10px;
	}
    #imgs {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #topbar {
        margin-top: 5px;
    }
}

@media (min-width: 768px) {
	.button {
		font-size: 35px;
		margin: 10px 10px 10px 10px;
	}
    #imgs {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    #topbar {
        margin-top: 0px;
    }
}
@media (min-width: 1600px) {  
    #main:after {
        box-shadow: inset 0 0 15px 10px white;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        pointer-events: none;
    }
    #imgs {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
:root {
    --picture-margin: 5px;
    --width: 1600px;
}
body {
	margin: 0px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
	
a {
	text-decoration: none;
}
a:not([class]) {
	color: #3080dd;
}
a:not([class]):hover {
	color: #158;
	text-decoration:underline;
}
.insetRed {
	color: rgba(200, 0, 0, 0.6);
	text-shadow: 1.5px 2px 1px #ffffff, 0 0 0 #990000;
}
.insetCyan {
	color: rgba(0, 80, 160, 0.7);
	text-shadow: 1.5px 2px 1px #ffffff, 0 0 0 #002040;
}
.insetOrange {
	color: rgba(200, 80, 20, 0.7);
	text-shadow: 1.5px 2px 1px #ffffff, 0 0 0 #000000;
}
.insetDark {
	color: rgba(0, 0, 0, 0.5);
	text-shadow: 1.5px 2px 1px #ffffff, 0 0 0 #000000 !important;
}
#topbar {
	display: flex;
	flex-flow: row wrap;
	text-align: center;
	align-items: center;
}

#buttons {
	flex: 1 1 auto;
	margin: 0px;
	padding: 0px;
}

.button {
	font-weight: bold;
	display: inline-block;
	white-space: nowrap;
	position: relative;
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
	-webkit-transform: perspective(300px);
    transform: perspective(300px);
}

.button:hover {
	-webkit-transform: perspective(300px) translateZ(15px);
	transform: perspective(300px) translateZ(15px);
}
.button a div {
	display:inline-block;
}
.linkButton {
	display: inline-block;
	box-shadow: 1px 1px 2px #444;
	border-radius: 2px;
	padding: 3px 4px 5px 4px;
	color: #fff;
	font-weight: bold;
	line-height: 16px;
	background-color: #337ab7;
	transition: all 0.1s;
	margin-top: 5px;
}
.linkButton:hover {
	box-shadow: 1px 1px 3px 1px #444;
	color: #fff;
}
.contentText {
  color: #eee;
  text-shadow: 1px 1px 1px #000;
  position: absolute;
  bottom: 0px;
  box-sizing:border-box;
  padding: 5px;
  background-color: rgba(0,0,0,0.50);
  box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.50);
  width: 100%;
}
.svgWrapper {
  margin: auto;
  width: 100%;
  height: 0px;
  padding-bottom: calc(100% / 8);
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  	transition-duration: 0.1s;
	transition-property: transform text-shadow;
	-webkit-perspective-origin: center center center;
	perspective-origin: center center center;
	-webkit-transform: perspective(200px);
	transform: perspective(200px);
	margin-bottom: -4px;
}
.svgWrapper svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.svgText {
  font-size:60px;
  font-family:"Droid Serif", serif;
  text-anchor: middle;
}
.logoOuter {
	flex: 1 0 auto;
}
.logoInner {
	min-width: 250px;
	max-width: 400px;
	width: 100%;
	display: inline-block;
}
.svgWrapper:hover {
	-webkit-transform: perspective(200px) translateZ(4px);
	transform: perspective(200px) translateZ(4px);
}

hr {
  margin-top: 4px;
  margin-bottom: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: lightgray;
}
#main {
    width: 100%;
    max-width: var(--width);
    margin: 0px auto;
    font-size: 0px;
    overflow: hidden;
    position: relative;
}
#main .img {
    display: inline-block;
    box-sizing: border-box;
    margin: var(--picture-margin);
    overflow: hidden;
    width: calc(100% - var(--picture-margin)*2);
    height: 0px;
    position: relative;
    cursor: pointer;
}
#imgs {
    width: 100%;
    height: 100%;
    max-width: calc(var(--width) - 200px);
    margin-left: auto;
    margin-right: auto;
    transition: transform 1s;
}
.img img {
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s;
    display: block;
    position: absolute;
}
#about {
    max-width: 800px;
    padding: 20px;
    margin: 20px auto 40px auto;
    display: block;
}
/*.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}*/