/* HI... you're probably not going to find anything useful in here as nothing is done yet, but feel free to rob my code I don't mind*/


* {
  margin: 0;
  font-family:serif;
}

body {
  height: 100%;
    font-size: 1rem;
    background-image: url(../images/backgrounds/website-bg-light.png);
    font-family: "freepixel", sans-serif;
    letter-spacing: 0;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size:cover;
    background-attachment:fixed;
}

/* #### NAVIGATION STYLES #### */
nav {
  display: flex;
  height: 5vh;
  position: sticky;
  top: 0px;
}

#poster{
  display:flex;
  margin: 5px;
  height: 100px;
}



a {
  flex: 1;
  padding: 20px 0px;
  background:rgba(75, 149, 106, 1);
  color: rgba(255, 230, 255, 1);
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

a:hover {
  background: grey;
  color: silver;
  font-size: 24px;
  opacity: 0.8;
}

a:visited {
  color: silver;
}

/* #### GENERAL STYLES #### */

h1 {
  font-size: 48px;
  padding: 20px 0px;
  text-align: left;
  color: white;
  text-shadow: 1px 1px silver;
}

main {
  width: 50%;
  margin: auto;
}


h3 {
  font-size: 14px;
}

h4 {
  text-align: center;
  font-size: 12px;
}


section {
  padding: 10px;
  scroll-margin-top: 8vh;
}

h2 {
  padding: 10px 0px;
}

div {
  display: flex;
}

img {
  width: 300px;
  background: white;
}

p {
  font-size: 28px;
  background: rgba(237, 231, 225);
  color: black;
  padding: 5px;
  border-radius: 10px;
}

#welcome {
  margin: 10px;
  background: rgba(75, 149, 106, 1);
  border-radius: 25px;
}

/*#banner {
  background-image: url("../images/banners/csm-banner.jpg");
  background-attachment:fixed;
  height: 245px;
  width:100%;
  background-repeat: no-repeat;
}
