/* 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." */
   
   /*font stuff*/
@import url('https://fonts.googleapis.com/css2?family=Texturina:ital,opsz,wght@0,12..72,100..900;1,12..72,100..900&family=Uncial+Antiqua&display=swap');


.texturina-<uniquifier> {
  font-family: "Texturina", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.uncial-antiqua-regular {
  font-family: "Uncial Antiqua", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: white;
  color: black;
  font-family: "Texturina";
}

/*end font stuff*/

		.container {
			width: 400px;
			height: 500px;
			margin: auto;
			margin-top: 170px;
			position: relative;
		}

		h1 {
			font-family: 'Texturina', serif;
			margin: 0;
			padding: 0;
			font-size: 46px;
			font-weight: normal;
			line-height: 42px;
		}

		.subtitle {
			font-size: 12px;
		}

		.white {
			border: 1px solid #000;
			padding: 12px;
			margin: 6px 0;
		}

		.banner {
			height: 100px;
			border: 1px solid black;
			background: #666;
			text-align: center;
			padding: 12px;
			background-image: url(assets visual/aquagalaxy_small.gif);
			background-position: 1px;
			background-size: cover;
			color: #EEE;
			font-size: 10px;

		}

		.nav a {
			display: inline-block;
			text-transform: uppercase;
			letter-spacing: 1px;
			font-weight: bold;
			color: black;
			text-decoration: none;
			margin-top: 12px;
			border-bottom: 1px dotted black;
		}

		.updates {
			width: 340px;
			margin-left: 60px;
			overflow: hidden;
			height: 30px;
		}

		.update {
			display: inline;
			margin-right: 24px;
		}

		.updates {
			/* margin-top: 6px; */
		}

		.item-desc {
			font-size: 12px;
		}

		img {
			position: absolute;
			height: 60%;
			top: 150px;
			pointer-events: none;
			left: -200px;
		}

		.title {
			margin-left: 110px;
		}
