@font-face 
{
  font-family: 'ibm_ega';
  src:  url('ibm_ega.woff') format('woff');
}

body
{
	font-family: 'ibm_ega';
	font-size: 42;
	text-align: center;
	background-color: black;
}

.welcome
{
	font-size: 56;
	color: white;
	background-color: black;
}

#menu 
{
	font-size: 28;
	color:#333;
	background-color:#111;
	padding: 6px 0;
}

#menu ul {
	margin: 0; padding: 0;
	display:inline-block;
}
#menu ul li {
	display:inline-block;
	list-style-type: none;
	margin: 0; padding: 0;
}
#menu ul li a, #menu ul li a:link, #menu ul li a:visited {
	display:block;
	text-decoration: none;
	color:#aaa;
	padding: 3px 20px;
	margin: 0 4px;
}
#menu ul li a:active, #menu ul li a:hover{
	color:#f22;
	background-color: #555;
}
#menu ul li a:focus {
	color:#5f5;
	background-color:#555;
	outline:none;
}

#menu ul li a:before {content:"["}
#menu ul li a:after {content:"]"}
#menu ul li a:before, #menu ul li a:after {color: #555;}
#menu ul li a:active:before, #menu ul li a:hover:before {color:#f55}
#menu ul li a:active:after, #menu ul li a:hover:after {color:#f55}
#menu ul li a:focus:before, #menu ul li a:focus:after {color:#0a0}

.service_cat
{
	font-size: 28;
	color: white;
	margin-top: 20px;
}

.service_sub
{
	font-size: 18;
	margin-top: 10px;
	color: orange;
}


.almond_disclaimer
{
	font-size: 14;
	color: grey;
}

.under_development
{
	margin-top: 20px;
	font-size: 28;
	color: red;
}

.footer
{
	margin-top: 70px;
	font-size: 28;
	color: white;
}

.text_content
{
	text-align: left;
	margin-top: 80px;
	margin-left: 10%;
	margin-right: 10%;
	font-size: 20;
	color: grey;
}

.msdos_logo
{
	display: inline-block;
}

.strip
{
	overflow:hidden;
	position: relative;
	top: 10px;
	margin-bottom: 25px;
	height: 4px;
	width: 100%;
	  z-index:1;
	background:transparent;
}
.rainbow{
	box-sizing:border-box;
	border-radius: 100%;
	position: relative;
	top: -400px;
	height: 1000px;
	width: 75%;
	background:linear-gradient(90deg,#ff0000, #ff7f00 8.3%, #ffff00 16.6%, #7fff00 24.9%, #00ff00 33.2%, #00ff7f 41.5%, #00ffff 49.8%, #007fff 58.1%, #0000ff 66.4%, #7f00ff 74.7%, #ff00ff 83%, #ff0000 97.2%, #ff0000);
	animation :10s rainbow 0s linear infinite;
}

@keyframes rainbow
{
  from
  {
  	transform:rotate(0deg);
  }
  to
  {
  	transform:rotate(360deg);
  }
}

.wrapper{
	margin-top: 140px;
	margin-bottom: 110px;
	width: 300px;
	height: 300px;
	display: inline-block;
	-webkit-perspective: 2000px;
	-webkit-perspective-origin: 50% -600px;
}

.single-box {
	background-size: cover;
	position: absolute;
	width: 300px;
	height: 300px;
}

.flex-container {
            display: flex;
            align-items: center;
			margin-bottom: 100;
            gap: 100px;
        }

.box {
	transform-origin: 50% 150px 0;
	transform-style: preserve-3d;
	animation: rotate 10s infinite linear;
}
.side-front { 
	background-color: red;
	transform: translateZ(150px);
}
.side-back { 
	background-color: green;
	transform: rotateY(180deg) translateZ(150px);
}
.side-top {
	background-color: blue;
	transform: rotateX(90deg) translateZ(150px);
}
.side-bottom { 
	background-color: cyan;
	transform: rotateX(-90deg) translateZ(150px); 
}
.side-left { 
	background-color: magenta;
	transform: rotateY(-90deg) translateZ(150px); 
}
.side-right { 
	background-color: yellow;
	transform: rotateY(90deg) translateZ(150px); 
}

@-webkit-keyframes rotate {
	0% { -webkit-transform: rotateX(0) rotateZ(0); }
	100% { -webkit-transform: rotateX(360deg) rotateZ(360deg)}
}


/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.ezgallery.montage { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ezgallery.montage img {
  flex: auto;
  margin: 0 5px 5px 0;
  object-fit: contain;
  object-position: bottom;
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 5px;
  gap: 20px;
  margin-top: 40;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: minmax(150px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 10px 10px 0;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  object-position: bottom;
}