@font-face {
  font-family: pixelF; /* set name */
  src: url(../fonts/c_c_red_alert_inet/C&C\ Red\ Alert\ [INET].ttf); /* url of the font */
}


.image-container img {
    max-width: 300px;   /* maximum width */
    max-height: 300px;  /* maximum height */
    /*min-width: 100px;    minimum width */
    /* min-height: 100px;   minimum height */
    width: auto;        /* maintain aspect ratio */
    height: auto;       /* maintain aspect ratio */
    display: block;     /* remove inline spacing */
    margin: 0 auto;     /* optional: center image */
}

#gallery{
	height: 100vh;
	width: 100%;
}

#header{
	-webkit-transform: translate3d(0, 0, 0);
    position: relative;
	    /*Opacity start*/
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 10px;
    margin: 0;
	z-index: 2;


	/*
    background: #000808;
	color:aliceblue;
    height: 45px;
    z-index: 2;
	opacity: 0;*/
}


div .menuwrapper{
	position: relative;
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center; /* vertically aligns them */
  justify-content: space-between;
}

/* *{
	box-sizing:border-box;
} */
 /*
html , body{
	overflow:show;
	margin: 0;
    padding: 0;
	background-color:#6d597a;
	color:#355070;
}*/

html , body{
	font-family: pixelF;
  	height: 100vh;
	width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;  /* hide horizontal scrollbar */
    overflow-y: show;    /* allow vertical scrolling */
	/* background-color:#6d597a; */
	/* background-image: url("../misc/majula.gif");
	background-repeat: repeat; */
	color:#000808;
	/*#355070*/
}


body{
	overflow: hidden;
}

canvas{
	opacity: 0;
	display:block;
	position:absolute;
	top:0;left:0;
	z-index:1;
	/* pointer-events:auto!important;
	pointer-events:none; */
}




.physicsDiv{
	position:absolute;
	display:inline-block;
	top:0;left:0;
	cursor:gray!important;
	transform-origin: center;
	pointer-events:none;
	
}
.autoWidth{
	width:auto;
}
.smol{
	width:100px;
}

h1,h2,h3{
	color:#ddf5f4;
}

.icon {
  width: 2em;
  height: 2em;
  padding-top: 10px;
  vertical-align: -webkit-baseline-middle;
}




.custom-link {
  font-family: pixelF;
  font-size: larger;
  text-decoration: none;
  color: #ddf5f4;
}



    .tooltip {
      position: relative;
      display: inline-block;
      cursor: pointer;
      color: #007BFF;
      font-weight: bold;
    }

    /* Tooltip text */
    .tooltip .tooltiptext {
      font-size: smaller;
      visibility: hidden;
      width: 180px;
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 8px;
      border-radius: 5px;
      position: absolute;
      z-index: 1;
      /*bottom: -125%; *//* position above the text */
	    bottom: -380%; 
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    /* Tooltip arrow */
    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
      bottom: 100%; /* bottom of the tooltip */
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent #333 transparent; /* arrow pointing up */
    }

    /* Show the tooltip on hover */
    .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
    }



