/*  Default code for all pages
---------------------------------------------------------------------------------------------------------------*/
website colors{
	color: #006DE6;
	color: #51D5FF;
	color: #E2D5B1;
}

@font-face {
  font-family: myFirstFont;
   src: url('../fonts/AtariClassic-Regular.ttf');
}

* {
  font-family: myFirstFont !important;
}
html{
	background-color: #E2D5B1;
	/*font-family: Atari Classic;*/
}
#screen{
	background-color: #006DE6;
	width: 80%;
	margin: 25px auto;
	padding: 50px 25px;
	border-radius: 600px 600px 600px 600px / 50px 50px 50px 50px;
	height: 768px;
	font-size: 2rem;
	color: #51D5FF;
}
h2{
	text-align: center;
	font-size: 3rem;
  width: 100%;
}
p{
  text-align:left;
}
input{
	background-color: #006DE6;
	border: 0px;
	border-bottom: 2px solid #51D5FF;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}
#nav{
	list-style: none;
	height: 500px;
	width: 70%;
	margin: 0 auto;
}
#nav li{
	margin: 0 0 5px 0;
}
#nav li::first-letter {
  /*filter: invert(100%);*/
  background-color: #51D5FF; /* Swapped background */
  color: #006DE6;            /* Swapped text color */
  padding: 0 4px;          /* Optional: adds space around the character */

}
#nav_select{
	display: flex;
  flex-wrap: wrap;
	width: 100%;
  margin: 0 auto;
}
#pagination{
  display: flex;
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height:30px;
  line-height: 30px;
  margin: 0 0 10px 0;
}
#pagination p{
  align-items: center;
  font-size: 1.8rem;
  font-weight: 1000;
  background-color: #51D5FF; /* Swapped background */
  color: #006DE6;            /* Swapped text color */
  padding: 3px 20px 0px;          /* Optional: adds space around the character */
  border-radius: 5px;
}
#pageForward{
  float:right;
}
#nav_select input{
  width: 60%;
}
@media screen and (max-width: 1600px) {
  #screen{
    background-color: #006DE6;
    width: 80%;
    margin: 25px auto;
    padding: 50px 25px;
    border-radius: 600px 600px 600px 600px / 50px 50px 50px 50px;
    height: 668px;
    font-size: 1.6rem;
    color: #51D5FF;
  }
  #nav{
    list-style: none;
    height: 500px;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 950px) {
  h2{
    font-size: 2.5rem; 
  }
  #screen{
    background-color: #006DE6;
    width: 80%;
    margin: 25px auto;
    padding: 50px 25px;
    border-radius: 600px 600px 600px 600px / 50px 50px 50px 50px;
    height: 468px;
    font-size: 1.2rem;
    color: #51D5FF;
  }
  #nav{
    list-style: none;
    height: 400px;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  h2{
    font-size: 2rem; 
  }
  #screen{
    background-color: #006DE6;
    width: 80%;
    margin: 25px auto;
    padding: 50px 25px;
    border-radius: 600px 600px 600px 600px / 50px 50px 50px 50px;
    height: 368px;
    font-size: .8rem;
    color: #51D5FF;
  }
  #nav{
    list-style: none;
    height: 300px;
    width: 70%;
    margin: 0 auto;
  }
}