
body {
    background: #9992D8;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header {
    min-height: 50px;
    background: #BC92D8;
}

main {
  width: 960px;

  display: flex;
  flex-direction: column;
  
  align-items: center;
  align-content: center;
  justify-content: center;
  
}

footer {
    min-height: 50px;
    background: #BC92D8;
}

.hero {
    flex-direction: column;
    display: flex;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/Picked_Elderflower.jpg");
    min-height: 20em;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: white;
    text-align: center;
}

.hero-header {
    font-size: 5em;
    align-self: center  ;
}