/* 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." */
   
  
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {


  background-color: #201b23;
  color: #d7c1d7;
  font-family: "Albert Sans",serif;
  Font-size:20px;
  
}

 .logo {
  display: block;
  margin: 0 auto;
}

h1 {
  text-align: center;
  }
h2 {
  text-align: center;
}


hr {
  border: none; /* Removes the default border */
  height: 2px; /* Sets the thickness of the line */
  background-color: #6A5973;
}

a {
  color: #d7c1d7;       /* text color */
  font-family: "Albert Sans";  /* font */
}

