h1, h2 {   
    color: green;
    font-family: fantasy;
}

p  {
    font-family: sans-serif;
    line-height: 1.5em;
}

.container {
    margin-left: 20%;
    margin-right: 20%;
    
}

nav, footer {
    background-color: #4d1979;
    color: white;
    padding: 10px;
    font-family: sans-serif;
    /* text-align: center; */
    /* padding-left: 20%; */
    text-align: right; 
    padding-right: 20%;
}

/* unvisited link */
nav a:link {
  color: white;
}

/* visited link */
nav a:visited {
  color: lightgray;
}

/* mouse over link */
nav a:hover {
  color: gray;
}




/* unvisited link */
footer a:link {
  color: white;
}

/* visited link */
footer a:visited {
  color: paleturquoise;
}

/* mouse over link */
footer a:hover {
  color: gray;
}


.banner_big {
    background-color: gray;
    min-height: 75vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-image: url(images/flood.jpg);
    background-size: cover;
    background-position: center;

}

.banner_big h1 {
    color: white;
    font-size: 3em;
}


.banner_small {
    background-color: gray;
    min-height: 10vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-image: url(images/flood.jpg);
    background-size: cover;
    background-position: center;

}

.banner_small h1 {
    color: white;
    font-size: 3em;
}



