/*
Theme Name: My Blank Theme
Author: Andy
Version: 1.1
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
}

h2, h3, h4, h5, h6, .sub-heading {
  font-family: 'Inter', sans-serif;
}

p {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

/* Hyperlink Styling */
a {
  color: #003366;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}

a:hover {
  color: #ffaa00;
}