/* 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-face {
    font-family: DigiFont;
    src: url(Ac437_IBM_Model3x_Alt3.ttf);
}
	body {
		min-height: calc(100vh - 10px);
		overflow-x: hidden;
		width: fit-content;
		padding: 10px;
		margin: 10px auto 0 auto;
		background-color: lightpink;
		font-family: DigiFont;
		font-size: 25px
	}
	.room {
		width: 100%;
		height: 300px;
		position: relative;
		transform: scale(0.75) translateY(-25%);
	}
	span {
		opacity: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: calc(1em + 3.5vw);
		font-family: DigiFont;
		color: orange;
		line-height: 1;
		filter: drop-shadow(1px 1px 0 black)
			drop-shadow(-1px 1px 0 black) 
			drop-shadow(1px -1px 0 black) 
			drop-shadow(-1px -1px 0 black);
		text-transform: uppercase;
		z-index: 99;
  }
	.rotate {
		width: fit-content;
		height: fit-content;
		display: inline-block;
		position: absolute;
	}
	.rotate:hover img, .rotate:focus img {
		transform: rotate(3deg);
	}
	.rotate:hover span, a:focus span {
		opacity: 1;
	}
	.appear {
		width: fit-content;
		height: fit-content;
		display: inline-block;
		position: absolute;
	}
	.appear img {
		opacity: 0;
	}
	.appear:hover img, .appear:hover span, a:focus img {
		opacity: 1;
	}
	header {
		width: fit-content;
		padding: 10px;
		margin: 10px auto 0 auto;
		text-wrap: normal;
		position: relative;
		z-index: 100;
		font-family: DigiFont;
		font-size: 30px;
		text-align: center;
	}
	h1 { font-size: 50px; line-height: 50px; color: #000;
		text-shadow: none; margin: 0; text-align: center; }
    a:link {
  color: mediumvioletred;
  background-color: transparent;
  text-decoration: none;
    }
    
    a:visited {
  color: darkslateblue;
  background-color: transparent;
  text-decoration: none;
      }

    a:hover {
  color: Maroon;
  background-color: transparent;
  text-decoration: none;
      }
    a:active {
	text-decoration: none; 
	color: darkslateblue; 
	background: transparent;
      }
	@media screen and (max-device-width : 800px){
		.room { transform: scale(0.95);	}
		span { font-size: calc(0.5em + 1.7vw); }
		header { margin: 10px auto; }
	}