/* 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." */
.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 23%;
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
  border: 1px solid #ecf1f1;
  align-items:stretch;
}

.content:hover {
  background-color: #cef5d6;
  padding: 10px;
  border: 1px solid #005c0f;
}

.main {
  max-width: 1000px;
  margin: auto;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1200px) {
  .column {
    width: 45%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {
  .column {
    width: 98%;
  }
}





@font-face {

font-family: "F25";

src: url('https://sachalann.neocities.org/fonts/F25_Bank_Printer.ttf') format("truetype");

}

@font-face {

font-family: "Pixel";

src: url('https://sachalann.neocities.org/fonts/PixelOperator8.ttf') format("truetype");

}

@font-face {

font-family: "PixelS";

src: url('https://sachalann.neocities.org/fonts/PixelOperator.ttf') format("truetype");

}

ul {
  list-style-image: url('ok.png');
  list-style-type: square;
}

body {
  background-color: white;
  color: black;
  font-family: "Times";
  margin:0;
  padding:0;
  
}



h1 {
  font-family: "F25";
  text-align: center;
  font-size:30px;
}

h2 {
  font-family: "F25";
  text-align: left;
  font-size: 22px;
}

p {
  font-family:"Pixel";
  font-size:15px;
  text-align:center;
}



@media screen and (max-width: 1200px) {
  h1 {
    font-size:60px;
  }
  h2 {
    font-size:44px;
  }
  p {
    font-size:30px;
  }
}


.centerctnr {
  
  position: absolute;
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.topctnr {
  position: absolute;
  align-content: center; 
  justify-content: center;
  display: flex;
  width:100%;
  height:100%;

}

.bottomctnr {
  position:absolute;
  width:100%;
  height:100%;
  display: flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;

}

a:link {
  color: #3e8235;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #224731;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: #7dbd42;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #ff9147;
  background-color: transparent;
  text-decoration: underline;
}

#container {
  display:inline-flex;
  max-width:100%;
  max-height:100%;
  left:0;
  top:0;
  position: relative;
}

#image {
  position: relative;
  left: 0;
  top: 0;
}

#small {
  font-family: "PixelS"
}
