/* 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: 'Omnibus';
    src: url('https://fiskaverse.neocities.org/Busorama.woff2') format('woff2'),
      url('https://fiskaverse.neocities.org/Busorama.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  font-family:'Omnibus', Georgia, Times, Serif, sans-serif;
  text-shadow: -10px, -10px, 7px #ffffff;
  background-color:grey;
}
  .box{
  border:5px solid #000;
  width:300px; /*need to center*/
  height:300px;
  overflow:scroll;
  padding:30px;
  margin:30px, 10px 30px 10px;
  margin:0 auto; /*to center*/
  /*display: inline-block;*/
  box-sizing:border-box;
  box-shadow:-5px -5px 20px #000;
  border-radius:10px;
}

.flex-container {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	flex-direction:row;
	flex-wrap:nowrap; /* the boxes don't go to the next line */
}

.flexed-item-25 {
	border:2px solid #000;
	width:25%;
}

.flexed-item-50 {
	border:2px solid #000;
	width:50%;
}

.flexed-item-75 {
	border:2px solid #000;
	width:75%;
}

.flexed-item-100 {
	border:2px solid #000;
	width:100%;
}

.flex-list {
	display: -webkit-flex;
	display: flex;
	display: inline-block;
	width: 100%;
	flex-direction:row;
	flex-wrap:nowrap; /* the boxes don't go to the next line */
}

.flexed-list-25 {
	border:2px solid #000;
	width:25%;
}
.center {
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  width: 50%; 
}
p{
  font-family:Courier;
  color: black; 
  text-align: center;
}
img{
  text-align: center;
}
h1{
  font-family:'Omnibus', sans-serif;
  color: white;
  font-size:40px;
  text-decoration:none;
}
a:visited{
  color:white;
  font-family:Courier;
  font-size:40px;
  text-decoration:none;
}
a:hover a:activate{
  color:black;
  font-family:Courier;
  background-color:skyblue;
  text-decoration:underline;
}
li{
  font-family:Courier;
}
h2{
  font-family:Helvetica;
  color: black;
  text-align: center;
}

h3{
  font-family:Courier;
  color: white;
  text-align: center;
}