

hmtl {
    scroll-behavior: smooth;
}


body {
    align-items: center;
    background-position: center top;
    background-image: url("img/Zeppa-2021-11.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-color: #1c2b3e;
    color: #1c2b3e;
    font-family: "Cinzel", sans-serif;
    font-weight: bold;
    }


header {
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left-bottom;
    padding-bottom: 10px;
    }


.container {
    padding: 10px;
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
    justify-content: space-between;
    color: #FFFFFF;
    text-shadow: 3px 3px 4px rgba(0,0,0,1);
    
}

/* unvisited link */
a:link {
  color: #74a2cf;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #74a2cf;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #91b1d0;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #74a2cf;
  text-decoration: none;
}

p {
    line-height: 1.5;
    font-family: "Lora", sans-serif;
    padding-left: 10px;
    }
    
p2 {
    line-height: 1.5;
    font-family: "Lora", sans-serif;
    padding-left: 10px;
    text-align: center;
    }    
    
    
h1 {
    padding-left: 10px;
}

/* Nav Styling */

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: right;
    justify-content: space-between;
    padding: 15px;
    }

.nav-ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    list-style-type: none;
    }
    
.nav-ul li a {
    display: inline-block;
    color: #FFFFFF;
    font-family: "Cinzel", sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    }    
    
    
.hamburger {
    background-color: transparent;
    border: 0;
    display: none;
    color: #5d7ca4;
    cursor: pointer;
    font-size: 20px;
}    


.hamburger:focus {
   outline:none;
}    



.banner {
 display: flex;
 width: 100%;
  background-position: center;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  }


.mid-section {
    background-color: transparent;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 3px 3px 4px rgba(0,0,0,1);
    font-size: 18px;
    padding: 5px;
}

.article {
    background-color: rgba(31, 46, 65, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    color: #FFFFFF;
    text-shadow: 3px 3px 4px rgba(0,0,0,1);
    font-size: 18px;
    margin: 25px;
    
   }

.aside {
  width: 100%;
  color: #1c2b3e;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  background: linear-gradient(to left, black, #33b5e5);
}

.fb-page {
    align-items: center;
}



input[type=text], input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-family: "Cinzel", sans-serif;
  font-weight: bold;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Cinzel", sans-serif;
  font-weight: bold;
}

input[type=submit]:hover {
  background-color: #45a049;
}

button {
    font-family: "Cinzel", sans-serif;
    font-weight: bold;
}


footer {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  font-family: "Cinzel", sans-serif;
  background-position: center;
  background-size: 30%;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  padding: 15px;
}


@media screen and (max-width: 767px) {

    body {
        background-size: 400px;
    }

    .container {
    width: 100%;    
    }

   .nav-ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-ul.show {
        display: flex;
    }
    
    .hamburger {
    display: block;
    } 
    
    .banner {
        font-size: 30px;
        padding: 30px;
  text-shadow: 2px 2px #000000;
    }
    
    .article {
    width: 90%;
    flex-direction: column;
    align: left;
    margin: 10px;
        
    }
    
    .mid-section {
        width: 90%;
    }
    
    
}
    
    
    
    
    