
body {
  
    background-image:url('https://monk-izm.neocities.org/GIF/zzGlGQpGZqtiM.gif');
    background-color: black; /* fallback background */
  background-repeat: no-repeat; /* prevent tiling */
  background-position: center center; /* center horizontally and vertically */
  background-attachment: fixed; /* optional, makes it stay in place */
   background-size: 800px 500px; /* width height in px */
        }

  html, body {
  margin: 0;          /* remove default spacing */
  padding: 0;
  width: 100vw;       /* always fill the full window width */
  min-height: 100vh;  /* start at full height, but allow scrolling */
  overflow-x: hidden; /* prevent sideways scrollbars */
}
  
.box1 
{
  background-color: rgba(123, 76, 2, 0.519);
  text-align:center;
}

.logo1 
{
  text-align: center;
  animation: breathing 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes breathing {
  0%, 100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
}

h1 
{
  
  text-align:center;
  
}

#p2
 {
  text-align: center;
  .thumb-image:hover {
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
    display: inline-block;      /* allows transform to apply properly */
  transition: transform 0.3s; /* smooth animation */
}
a:hover {
  transform: scale(3.0);      /* grow 20% bigger on hover */
}

.thumb-image {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
  
}

#p1
{
  text-align:center;
  font-size: xx-large;
  background-color: dimgrey;
}

a
{
display: inline-block;      /* allows transform to apply properly */
  transition: transform 0.3s; /* smooth animation */
}
a:hover {
  transform: scale(1.5);      /* grow 20% bigger on hover */
}

.menutext
{
color: azure;
font-size: xx-large;
}