@charset "UTF-8";
/* CSS Document */
*{margin:0px;
	padding:0px;
	text-size:0px;}

html,body {width:100vw;
    	   height: 100vh;
    	   margin: 0;}

body {background-color:black}

h2{margin-bottom:0px;
	color:white;}
h3 {font-family: 'Permanent Marker', cursive;
			color:white;}

.col {position: absolute;
  	left: 50%;
  	top: 25%;
  	column-rule: 2px dashed black;
  	transform: translate(-50%);
  	width: 80%;
  	column-count: 3;
  	column-gap: 60px;
  	font-family: arial;
	color:black;
	text-align: justify;
	padding-bottom: 15px;}

.dc{float:left;
	font-size:80px;
	line-height:70px;
	padding-right:8px;
	color: white;}


.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 {text-align: center;
  padding: 32px;}

#whale{top: -20px;
		position: absolute;
		height: auto;
		width: 100%;
		z-index: -1;}

#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;}


@media only screen and (max-width: 1000px) {
	.col {column-count: 2;
			color: lightgray;}}

@media only screen and (max-width: 700px) {
 	 .col {column-count: 1;
			color: lightgray;}}

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

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