/* 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." */

/*Your background*/
body {
background-image: url('images/windowsxp.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: 100vh;
margin: 0;
}



/*ur Announcement font for minor writing */
@font-face {
  font-family: MessyHandwritten;
  src: url('fonts/MessyHandwritten-Regular.ttf');
}

/*ur Announcement font for the sticky note */
@font-face {
  font-family: blzee;
  src: url('fonts/blzee.ttf');
}

/*ur Announcement font for the major writing */
@font-face {
  font-family: AbrilFatFace;
  src: url('fonts/AbrilFatface-Regular.ttf');
}

/*Text styles*/
h1a {
  font-family:AbrilFatFace;
  font-size:70px;
  color:#c42121;
  text-shadow:3px 3px 5px gray;
  }

.abril {
  font-family:AbrilFatFace;
  color:#000;
}

.blzee {
font-family:blzee;
}













