/* CSS - controls how the site looks */ 
/* Replace your Goolge font (or simaler) URL here then update the font-family below */
@import url("https://use.typekit.net/xll8gkw.css");

body {
  margin: 0;
  background: white;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
/* Typography - Headings */
h1 
 {
  font-family: owners-wide, bold; /* Update this to your new font-samily here */
  font-size: 2rem;
  color: black;
}

/* Typography - Paragraph text */

        
#container {
    display: flex;
    align-items: center;
}

#container p {
    margin-left: 1em;
}

p, a, button{
  font-family: owners, regular;
  font-size: 1rem;
  letter-spacing: 1px;
  color: black;
}

button {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-family: owners, bold;
  color: black;
}

.background {
  background-image: url('https://vee-design.neocities.org/images/observations/e2.png');
  background-size: cover;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  opacity: 0;
  transition: opacity 6s; 
}