* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	
    background-color: white;
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
}

#mainctn {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 50px 0;
}

#slate {
  background-color: black;
  color: white;
  width: 1000px;
  max-width: 100%;
  border-style: inset;
  text-align: center;
  font-size: 20px;
  z-index: 1;
}

.fishbowl {
  position: absolute;
  left: calc(50% - 1000px / 2 - 500px); /* 700px = slate width, 530px = fishbowl width + gap */
  top: 108px;
  background-color: black;
  color: white;
  border-style: inset;
  text-align: center;
  width: 500px;
  z-index: 0;
}

.fishbowl iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}



#mainpg {
	background-image: url('backgrounds/windowsbg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    width: 100%;
    display: grid;
  justify-items: center;
    
}

#coverimg img{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

#topbar {
		background-image: url('gifs/MRBanner02.gif');
	background-repeat: no-repeat;
	background-attachment: fixed; 
	background-size: 100% 100%;
	
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      height: 120px;
      background-color: white;
      color: #333;
      padding: 10px 20px;
      display: flex;
	  text-align: center;
      align-items: center;
      justify-content: center;
	font-size: 50px;
	z-index: 9998;
}

.nav {
	background-color: white;
	color: black;
	font-size: 32px;
	margin-left: 22px;
	margin-right: 22px;
}

@media (max-width: 600px) {
	.nav {
		font-size: 20px;
		padding: 8px 12px;
		text-align: center;
	}
}

.soc {
	background-color: white;
	color: black;
	font-size: 20px;
	margin-left: 22px;
	margin-right: 22px;
	margin-bottom: 15px;
}

a.nav:link,
a.nav:visited {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}

a.nav:hover,
a.nav:active {
	color: pink;
	background-color: transparent;
	text-decoration: underline;
	transform: scale(1.05);  
}

a.soc:link,
a.soc:visited {
	color: blue;
	background-color: transparent;
	text-decoration: none;
}

a.soc:hover,
a.soc:active {
	color: pink;
	background-color: transparent;
	text-decoration: underline;
	transform: scale(1.05);  
}



#otherstuff {
	float: left;
	background-color: black;
	color: white;
	width: 25%;
	max-width: 400px;
	height: 500px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-style: inset;
	text-align: center;
	font-size: 20px;
}


#header {
	background-color: blue;
	color: white;
	text-align: center;
	vertical-align: top;
	margin: 0;
}
.greeting {
	font-size:40px;
	color: white;
	text-shadow: -4px 4px #32a852;
	text-shadow: -8px 8px #47c2de;
	text-align: middle;
}
	
.stuffcont {
		border-style: inset;
		border-width: 4px;
		width: 80%;
		margin: 20px;
}

#footer {
  clear: both;
  text-align: center;
  margin-left: auto;
	margin-right: auto;
	width: 100%;
	margin-top: 15px;
}