p {
  
  max-width: 900px;
  margin: auto;
  margin-bottom: 25px;
}

.h2-pages {
  font-size: 14vw;
  text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    font-family: impact;
    line-height: 12svw;
  
}

h3
{
    text-align: center;
}
a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  opacity: 0.7;
  }

a:hover {
  
  opacity: 1;
    transition: .3s;
    font-size: 1.1em;
}
.font-special {
    text-align: end;
    font-size: 7vw;
    font-family: "Knewave", system-ui;
    line-height: 0px;
    margin: none;
}

.banner {
    border-style: solid;
    text-align: center;
    background-color: darkorange;
    top:0;
    position: sticky;
    
    
}

.div-header {
    
    max-height: 200px;
    max-width: 900px;
    margin: auto;
}

.div-header img   {
    width: 100%;
    max-height: 200px;
}

.container-special {
    max-width: 900px;
    margin: auto;
    display: grid;
    
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;

    
   
    margin-top: 5vw;
}

.item-1 {
    
    grid-column: 1/7;
    
    
   
    border-color: aqua;
    z-index: 1
}

.item-2 {
    
    
    grid-column: 7 / 13;
  
    max-width: 100%;
}

.item-2 img {
    max-width: 100%;
    
}

.item-3 {
    max-width: 100%;
    grid-column: 13
}

.item-3 img {
    max-width: 100%;
}


/* nav bar */

.div-menu {
  text-align: end;
  max-width: 900px;
}


html { font-size: 18px; }

body {
  
  font-size: 1.2em;
  line-height: 1.6;
  
  overflow-x: hidden;
}

.div-2grid {
  display: grid;
  grid-template-columns: 50%;
}
.item-A{
  grid: 1fr;
  max-width: 100%;
}

.item-B{
  grid: 1fr;
  max-width: 100%;
  text-align: end;
}

.centered {
    
    box-shadow: 4px 4px 10px black;
    width: max-content;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 25px;
    }

.centered-no-box-shadow {
    
    
    width: max-content;
    margin: auto;
    margin-bottom: 15px;
    }

.logo-fit {
    max-width: 65%;
    
    float: right;
    
}

.button {
  background-color: darkgreen;
  color: white;
  font-family: sans-serif;
  font-size: 25px;
  border-style: solid;
  border-color: black;
  border-width: 1px;
  border-radius: 5px;
    line-height: 2;
    
  
}
/* expanding content css */
 input[type="checkbox"] {
            display: none;
        }
 
        #expandedContent {
            display: none;
        }
 
        input[type="checkbox"]:checked~#expandedContent {
            display: block;
        }

footer {
    text-align: center;
    border-top: solid;
    border-width: 1px;
    
    
}

li { color: darkslategray;
    
    list-style-type: none;
    text-align: center;
    
}

.img-fit {
    border-style: solid;
    display: block;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 45px;
    box-shadow: 5px 5px 5px black;
    
}

.form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.form button {
  padding: 14px;
  border: none;
  background: black;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}