/* 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: blue;
  color: white;
  font-family: times;
}
p {
  color: grey;
  margin: 100px;  
  padding: 20px;
  font-size: 20px;
  text-align: center;
}
.image-hover {
    width: 300px ; /* Specify the width */
    height: 300px ; /* Specify the height */
    background-image: url('https://succy-beverage.neocities.org/images/cryptid_door_open_final.png'); /* Initial background image */
    background-size: cover; /* Cover the entire area of the element */
    /* transition: background-image 0.5s ease-in-out;  fuck smooth transitions */ /* Smooth transition */
}

.image-hover:hover {
    background-image: url('https://succy-beverage.neocities.org/images/cryptid_door_closed_final.png'); /* Change on hover */
* {
margin: 0;
padding: 0;
}

  /* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
  }