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

body {
  background-color: white;
  background-image: url("https://bettysgraphics.neocities.org/images/backgrounds/stars%201.gif");
  color: black;
  font-family: Verdana;
}

@font-face {                  
font-family: 'JacquardaBastarda-9';
src: url(https://humantooth.neocities.org/fonts/JacquardaBastarda9.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 

@font-face {                  
font-family: 'Afacad';
src: url(https://humantooth.neocities.org/fonts/Afacad-Regular.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 

.h1 {
  font-family: 'JacquardaBastarda-9', Arial;
}

.h2 {
  font-family: 'JacquardaBastarda-9', Arial;
}

.p1 {
  font-family: 'Afacad', "Comic Sans", serif;
}

.p2 {
  font-family: "Comic Sans MS", "Comic Sans", sans-serif;
}

a:link {
  color: White;
  text-decoration: none;
  font-family: 'Afacad';
}

a:hover {
  color: White;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Afacad'
}

a:visited {
  color: White;
  text-decoration: none;
  font-family: 'Afacad'
}

.banner {
  height: 120px;
  padding: 0.5rem;
  margin: 20px 0px 0px 20px;
  width: 1200px;
}

.navigation {
  background-color: Thistle;
  border: 1px solid white;
  border-radius: 10px;
  padding: 0.5rem;
  width: 1200px;
  height: 50px;
  margin: 20px 0px 0px 20px;
}

nav a {
  list-style-type: none;
  overflow: hidden;
  background-color: Thistle;
  display: block;
  color: Black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  float:left;
}

.float-parent-element { 
  width: 1200px; 
  float: left;
  
} 
.float-child-element { 
  width: 360px;
  float: left;
  margin: 4px;
  padding: 1rem;
} 

.welcome {
  border: 1px solid white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  background-color: Black;
  color: white;
  height: 500px;
  width: 330px;
}

.post {
  border: 1px solid white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  height: 500px;
  width: 330px;
  background-color: Black;
  color: White;
}
