/* 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 https://neocities.org/dashboardto change link color." */
@import url("style_extensions/dropdown.css");
@import url("style_extensions/slideshow.css"); 
@import url("https://homieboon.neocities.org/style_extensions/font/bodoni_condensed/stylesheet.css");

html{
  image-rendering: crisp-edges;
  /*zoom: 80%*/
}

body {
  
  background-color: black;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  color: white;
  font-family: bodoniefregularcond;
  font-size: 24px;
  
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000; 
  text-align: center;
}

a:link {
  color: #10EF7C;
}
a:visited{
  color: #D877FF;
}

img {
    position: relative;
    top: 0; bottom: 0; left: 0; right:0;
    margin: auto;
}

.show-hide {
  display: block;
  font-size: 24px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 16px;
  max-width: 700px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}


.button {
  font-size: 36px;
}

.center {
  margin: auto;
}

.card 
{
  width: 144px;
  height: 64px;
  position: relative;
  display: inline-block;
}
.card .img-top 
{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.card:hover .img-top 
{
  display: inline;
}

.sliding-background {
  background: url("assets/backer.png") repeat-x;
  height: 816px;
  width: 5076px;
  z-index: -1;
  animation: slide 60s linear infinite;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.code{
  max-width: 1080px;
  padding: 48px;
  margin: auto;
  border: 64px solid transparent;
  border-image: url(https://homieboon.neocities.org/assets/border_test.png) 64 64 repeat; 
  border-image-width: 64px;
  
  background-color: black;
  text-align: center;
  
  color: white;
  z-index:30;
  font-size: 24px;
}
.code2{
  max-width: 640px;
  margin: 32px;
  border-image: url(https://homieboon.neocities.org/assets/border_test.png) 64 64 repeat; 
  border-image-width: 64px;
  
  background-color: black;
  text-align: center;
  z-index:30;
}

.code3{
  max-width: 1280px;
  margin: auto;
  border-image: url(https://homieboon.neocities.org/assets/border_test.png) 64 64 repeat; 
  border-image-width: 64px;
  
  background-color: black;
  text-align: center;
  z-index:30;
  font-size: 24px;
}

.column {
  float: left;
  text-align: left;
  width: 50%;
}
.center-column {
  float: left;
  text-align: center;
  width: 50%;
}
.auto-column {
  float: left;
  text-align: left;
  width: auto;
}
.fill-column {
  float: left;
  position: relative;
  max-width: 70%;
}

.half-image {
  max-width: 25%;
  max-height: 25%;
}

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

.red {
	color: #EF1083;
}
.green {
	color: #10EF7C;
}
.yellow {
	color: #efff5c;
}
.blue {
	color: #D877FF;
}
.white {
	color: #FFFFF0;
}

@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-1692px, 0, 0);
  }
}