 /* reset rule */
* {
margin: 0; padding: 0; box-sizing: border-box;
} 

/* color palette:
#FEFFEE - off-white background
#231A29 - dark purple secondary    
#899C41 - olive green secondary
#ECAD5D - yellow accent
*/
 


    body{
        background-color: #FEFFEE;
        color: #231A29;
        font-family:  "Montserrat", sans-serif;
            }

        header {
            background-color: #231A29;
            padding: 12px;
            text-align: center;
        }

        
        header h1 {
            font-weight: normal;
            font-size: 36pt;
            text-transform: uppercase;
            color: #899C41; 
            padding-top: 10px;
        }


        header p {
            color: #ECAD5D;
            text-transform: lowercase;
            letter-spacing: 6pt;
            padding-top: 8px;
            padding-bottom: 10px;
        }

        h1 {
            text-align: center;
            color: #231A29;
            font-family: veranda;
            font-family: "Merriweather", serif;
        }

        .hometown h1 {
            font-size: 35pt;
            margin-bottom: 10px;
        }

        p {
            font-size: 14pt;
            line-height: 1.6;
        }


         /* Navbar container */
        .navbar {
            overflow: hidden;
            background-color: #899C41;
            font-family:  "Montserrat", sans-serif;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            font-weight: bold;        
        }

        /* Links inside the navbar */
        .navbar a {
            font-size: 16px;
            color: #231A29;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        .logo {
            width: 100px;
            height: 100px;
            padding: 15px;
            margin-left: 20px;
            cursor: pointer;
        }

        /* The dropdown container */
        .dropdown {
            overflow: hidden;
        }

        /* Dropdown button */
        .dropdown .dropbtn {
            font-size: 16px;
            font-family:  "Montserrat", sans-serif;
            font-weight: bold;
            color: #231A29;
            border: none;
            outline: none;
            background-color: #899C41;
            padding: 20px;
            cursor: pointer;
        }

        .navbar a:hover, .dropdown:hover .dropbtn {
            background-color: #231A29;
            color: #FEFFEE;
        }


        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #FEFFEE;
            font-family:  "Montserrat", sans-serif;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px #231A29;
            z-index: 1;
        }

        .dropdown-content a {
            float: none;
            color: #231A29;
            padding: 10px 14px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

        .dropdown-content a:hover {
            background-color: #231A29; 
            color: #FEFFEE; 
        }

        .dropdown:hover .dropdown-content {
        display: block;
        } 

          /* hometown page nav bar */
        .hometown_main_nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            background-color: #899C41;
        }

        ul, li a {
            list-style: none;
            padding: 10px;
            text-decoration: none;
        }

        .logo {
            width: 100px;
            height: 100px;
            padding: 15px;
            margin-left: 20px;
            cursor: pointer;
        }

        ul{
            display: flex;
            gap: 10px;
            margin-right: 20px;
        }

        .main_nav li {
            display: inline-block;
            margin: 0 10px;
        }

        .main_nav li a {
            transition: all 0.3s ease 0s;
            padding: 20px;
            color:#231A29;
            font-weight:bold;
            font-size: 12pt;
        }

        
        .main_nav a:hover { 
            background-color: #231A29; 
            color: #FEFFEE; 
        }

        
        
        button {
            
            padding: 9px 25px;
            background-color: #ECAD5D;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease 0s;
        }

        button:hover {
            background-color: #231A29;
            border-radius: 50px;
            color: #FEFFEE;
        }
        

        
        h2 {
            color:#231A29;
            font-family: "Merriweather", serif;
            font-size: 24pt;
            padding-bottom: 5px;         
        }

        /*img {
            max-width: 100%;
            height: auto;
            float: right;
            border-radius: 8px;
            box-shadow: 2px 2px 5px #aaa;
        }
        */

        .selfie {
            width: 100%;
            max-width: 300px;
            border-radius: 25px;
            object-fit: cover;
            vertical-align: middle;
            box-shadow: 5px 5px 10px #231;
            margin: 20px;
        }
        
        .wrapper {
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-around;
            gap: 5rem;
        }

        .introduction {
            flex: 1;
            padding: 15px; 
            margin: 20px;
        }

        .introduction p {
            margin-bottom: 15px;
            font-size: 14pt;
            line-height: 1.4
        }

       .flex-parent {
            border-radius: 15px;
            background-color: #899C41;
            min-height: 100px;
            display: flex;
            margin: 20px;
            flex-flow: row wrap;
            justify-content: center;
            gap: 20px;
            }

       .flex-child {          
            min-height: 80px;
            margin: 8px;
            padding: 20px;
            text-align: center;
            flex-basis: 30%; 
            margin: 0;
            flex-grow: 0;
            font-size: 14pt;
            font-weight: medium;
       }

       .goals h2 {
        text-align: center;
        font-size: 18pt
       }

        h3 {
            color:#1b1b1b;
            font-family: "Merriweather", serif;
        }


        main {
            width: 96vw; max-width: 1100px;
            display:flex;
            gap: 10px;
        }


        main div {
            flex: 1 0 40%;
            background-color:#ECAD5D; 
            padding: 12px;
            color:#231A29;
        }


        a {
            color:#1B1B1B;
        }


 
        section {
        display: flex;
        justify-content: center;
        flex-flow: row wrap;
        gap: 60px;

        }


        .art1 {
            border: 2px solid #ECB77B;
            border-radius: 0px 30px;
            background-color: #ECB77B;
            max-width: 360px;
            min-height: 200px;
            margin: 20px;
            flex: 0 0  auto;
            padding: 20px;
        }


        .art1 h2 {
            font-size: 16pt;
            text-align: center;
        }


        .art1 p {
            margin: 8px;
            line-height: 1.4;;
        }


        .art1 nav a {
            color: #231A29; text-decoration: none;
            font-weight:bold;
            font-size: 12pt;
            display: inline-block;
            padding: 4px 15px; 
        }

        .art1 nav a:hover { 
            background-color: #231A29; 
            color: #FEFFEE; }


        .hometown .content {
            padding: 20px;
            margin: 20px 20px 40px 20px;
        }
      
        .hometown .content p {
            margin-bottom: 15px;
            font-size: 14pt;
            line-height: 1.6;
        }
        
        .photoarray {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-around;
            max-width: 90%;
            margin:16px auto;
        }

        .photoarray figure {
            flex: 0 0 auto;
            width: 400px; 
            aspect-ratio: 1;  
            background-size: cover;
            background-position: center;
            margin: 8px;
        }

        .photoarray figure:nth-child(1) {
            background-image: url(../images/old_prentice.jpg);
        }

        .photoarray figure:nth-child(2) {
            background-image: url(../images/prentice_over.jpg);
        }

        .photoarray figure:nth-child(3) {
            background-image: url(../images/prentice_railroad.jpg);
        }

        .photoarray figure:nth-child(4) {
            background-image: url(../images/county_map.svg);
        }
    

        footer {
                border-top: 4px solid #222;
                width: 100%;
                margin-top: 100px;
                background-color:#1B1B1B;
                color: #FEFFFE;
                padding: 20px;
                text-align: center;
                position: relative;
            }

            footer cite {
                font-size: 10pt; line-height: 1.4;
                font-style: italic;
                color: #CCCCCC;}
