/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	font: 16px Helvetica, sans-serif;
	color: #FFFFFF;
	background: #10160e;
	cursor: url(roachcursor.gif), auto;
}
a { color: #22ff00; }
a:visited { color: #ff0000; }

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: red;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

h1, h2, h3 {
	text-align: center;
}
h2 { font-size: 30px; 
	font-weight: normal;
}

.main {
  max-width: 900px;
  margin:20px auto;
  padding: 30px;
  position: relative;
  background-color:#060a04
}

.header {
  max-width: 900px;
  margin: 10px auto;
  padding: 5px;
  position: relative;
}

.gallery::after {
display: table;
clear: both;
max-width: 900px;
content: ““;
}
.gallery img {
box-sizing: border-box;
float: left;
margin: 5px;
height: 200px;
width: calc(33.33% - 10px);
object-fit: cover;
}

#footer {
	margin-top: 7em;
	text-align: center;
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
  font-style: italic;
  font-weight: bold;
}
