@charset "UTF-8";
/* CSS Document */

* {box-sizing: border-box;
	margin:0px;
	padding:0px;
	text-size:0px;}

body {margin: 0;
	background-color: black;}

.dropbtn{background-color: transparent;
		color: white;
		padding: 16px;
		width: 100px;
		font-size: 16px;
		border: none;
		margin-bottom: 20px;}

.dropdown{position: fixed;
		display: inline-block;
		width: 100px;
		right: 10px;
		top: 22px;}

.dropdown-content{display: none;
				position: absolute;
				width: 100px;
				z-index: 1;
				text-align: center;
				background-color: black;}

.dropdown-content a{color:cornsilk;
					padding: 10px 16px;
					text-decoration:none; 
					display: block;
					border-radius: 10px;
					font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";}

.header {font-family: 'Indie Flower', cursive;
    font-size: 25px;
	text-align:center;
	color: white;
	padding-bottom: 15px;
	padding-top: 10px;
	top: 145px;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);}

h1{font-family: 'Indie Flower', cursive;
    font-size: 30px;
	text-align:center;
	color: white;
	padding-bottom: 15px;
	padding-top: 10px;
	top: 140px;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);}

.pic{top: 180px;
	position: absolute;}

.row {display: flex;
  flex-wrap: wrap;
  padding: 6px 4px;}

.column {flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;}

.column img { margin-top: 8px;
  vertical-align: middle;}


@media (max-width: 800px) {
  .column {flex: 50%;
    max-width: 50%;}}


@media (max-width: 600px) {
  .column {flex: 100%;
    max-width: 100%;}}

#header{background-color: white;
		width: 100%;
		position: fixed;
		z-index: 1;
		height: 100px;}

#title{position: absolute;
		left:50%;
		top:20px;
		transform: translate(-50%);
		font-size: 40px;
		color:black;
		z-index: 1;
		font-family: 'EB Garamond', serif;}

#menu{width: 30px;
	height: auto;}

#logo{position: absolute;
			width: 120px;
			top:0px;
			left:20px;
			height: auto;
			z-index: 1;}

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

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

.dropdown-content a:hover{color:gray;}

.dropdown:hover .dropdown-content {display: block;}