/* 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." */

body {
  background-color: black;
  color: white;
  font-family: "Times New Roman";
  z-index: 1;
}
a{
  color:pink;  
}
a:visited{
  color: pink;
}
.gallery {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-image img {
  width: 249px; height: 163px;
  /* change the size of the images here if you need to */
} 
  
.text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
} 

.footer { 
    position: absolute; 
    bottom: 0; 
    left: 0;
    right: 0;
    margin: auto;
}

html, body, .center {
    height: 95%;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.censor{
  filter:blur(8px);
}
.censor:hover{
  filter: blur(0);
}

.funny img {
    max-width: 100%;
    height: auto;
}

:root {
  --width:100px;
  --height:150px;
}

.explode {
  width: 131px;
  height: 167px;
  background: url('https://semilia.neocities.org/images/explosion.gif');
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;

  animation: toRight linear 6.8s infinite alternate, bounce linear 17s infinite alternate;
}

@keyframes bounce {
  0% {top:0;}
  48% {
  }
  50% {top: calc(100% - var(--height));}
  52% {
  }
  100% {top: 0;}
}

@keyframes toRight {
  0% {left: 0;}
  100% {left: calc(100% - var(--width));}
}