/* 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-image: url("https://i.postimg.cc/fTQ5S0P8/skulls.jpg");
   background-size: 10%;
  color: darkred;
  font-family: "vcr_osd_mono";
}
.textbox {
    outline:30px;
    outline-color: red;
    background-image: url("https://i.postimg.cc/6QHtyK5h/saftextr.jpg");
    margin: 30px auto;
    padding: 30px;
    text-align: center;
    width: 600px;
}
.titlebox {
    width: 400px;
    background-image: url("https://i.postimg.cc/j5kmrdqG/num.gif");
    margin: 30px auto;
    padding: 30px 600px;
}

.image-hover1 {
   position: fixed;
  bottom: 0;
  right: 0;
   width: 250px; /* Specify the width */
    height: 250px; /* Specify the height */
    background-image: url('https://i.postimg.cc/s2HSQjsj/web2-1.png'); /* Initial background image */
    background-size: cover; /* Cover the entire area of the element */
    transition: background-image 0.1s ease-in-out; /* Smooth transition */
}
.image-hover1:hover {
    background-image: url('https://i.postimg.cc/tg4W4Z0v/web2-2.png');
}
.bottomright {
      position: absolute;
      bottom: 0px;
      right: 0px;
  } 