/* 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." */
   
@font-face {
  font-family: 'MyFont';
  src: url('ADELIA.otf') format('truetype');
}

@keyframes wiggle {
  0% { transform: rotate(5deg); }
  25% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
    }

body {
  background-image: url('blue-sky-summer-dv-1920x1080.jpg'); /* your image path */
  background-size: 100% 100%;  /* stretches width + height */

}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

h1 {
 color: rgb(49, 165, 214);
 font-size: 60px;
 font-family: 'MyFont'





}

.top-text { text-align: center;
-webkit-text-stroke: 2px white;
animation-name: wiggle;
      animation-duration: 2s; /* Adjust duration for speed */
      animation-iteration-count: infinite; /* Or 'infinite' for continuous wiggling */
      animation-timing-function: linear;

}