
h1{
    color: #fff;
    padding-left: 50px;
    margin-top: 40px;
}
p{
    color: #fff;
    padding: 20px 50px 20px 50px;

}
.bold-text{
    font-weight: bold;
}
.gif-inline {
    width: 30px; /* Adjust width as necessary */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Aligns GIF with text */
    margin: 0 5px; /* Spacing around the GIF */
  }

  body {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  /* Add a class for the fade-out effect */
  .fade-out {
    opacity: 0;
  }
  /* This class will be added after the page loads */
  .fade-in {
    opacity: 1;
  }
  img, .gif-class {  /* Apply this class to GIF elements as well */
    -webkit-user-drag: none;
  }
  * {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */
  }