/* ---------------------------------------------- */
/* GRACIAS KENOME POR HABERME ANIMADO EL FONDO!!! */
/* ---------------------------------------------- */

/*
  Este CSS es un quilombo, algÃºn dÃ­a tengo que ordernarlo, soonâ„¢
*/

/* FONTS */
@font-face {
  font-family: "Liberation Mono";
  src: url("fonts/LiberationMono-Regular.ttf");
}

/* BASE AND GENERAL STUFF */
html {
  background-image: url("gif/stars.gif");
  background-size: 600px;
  background-attachment: fixed;
  font-family: "Liberation Mono";
  font-size: 13px;
  opacity: 100%;
  scrollbar-width: none;
}

* {
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}

body {
	-ms-overflow-style: auto;
	overflow: auto;
 	background:black;
  color: white;
  opacity: 0.9;
	padding: 0;
	
	margin: auto;
	width: 500px;
	height: auto;
	position: absolute;
	
  left:0;
  right:0;
	top: 10%;

	max-width: 100%;
	max-height: 100%;
	overflow: auto;
}

img {
	margin: auto;
	width: 100%;
}

::-webkit-scrollbar {
	display: none;
}

:root {
  --accent: #00EE11;
}

h4{
text-align: center;
}

.white-border {
  border-style: solid;
  border-color: white;
  border-width: 1.5px;
}

.accent-border {
  border-style: solid;
  border-color: var(--accent);
  border-width: 1.5px;
}

.mfw {
  color: #B8D962;
}

.textbox {
  color: white;
  background-color: black;
}

.highlight {
  background-color: white;
  color:black;
  padding: 0.0em 0.1em;
}

.highlight:hover{
  background-color: var(--accent);
}

.spoiler
{
  background-color: #fff;
  color: #fff;
}

.spoiler:hover
{
  background-color: black;
}

.top {
  text-align: right;
  position: fixed;
  bottom: 0px;
  right: 20px;
}

a {
  color: white;
  text-decoration: underline;
  text-decoration-color: white;
}

a:hover{
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

header {
 text-align: center;
}

header p {
  width: 90%;
  margin: auto;
}

h3 {
  text-align: center;
  font-size: 1.5em;
}


/* RESPONSIVENESS */

@media screen and (max-width: 700px)
{
  body {
    width: 90%;
  }
	.main-wrapper{
		width: 100%;
 	}
  .links {
    width: 90%;
  }
	.announcements{
		margin-left: 0px;
  }
}

/*
@media screen and (max-aspect-ratio: 4/3) {
body {
    width: 66%;
  }
}
*/

@media screen and (max-aspect-ratio: 9/15) {
html {
    font-size: 21px;
  }
body {
    width: 87%;
  }
.links a {
    font-size: 40px;
  }
 header p {
   font-size: 28px;
  }
.links {
    width: 80%;
  }
.greetings img {
    width: 60%;
  }
.announcements{
		width: 50%;
		margin-left: 0px;
  }
.main-wrapper{
	width:100%;
}
}


