/* CSS Ruleset */
*{
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

/* Header and Body Styling */
body {
   background-color: #DDC3C3;
        color: black;
        font-family: "Comic Relief", sans-serif;
        line-height: 1.5;
        padding-top: 10px;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0px 25px;
}

    h1{
        text-align: center;
        font-family: "Pacifico", sans-serif;
        font-size: 35px;
        color: #3B9797;
        padding-bottom: 8px;
        border: 4px solid #FFF58A;
        margin: 8px 25px;
        max-width: auto;

    }

   header > h1, h2{
            color: #774e74;
            padding-bottom: 10px;
            padding-top: 15px;
            margin: 0px 25px;
    
   }

   p{
    margin: 10px 25px;
   }

   .me div{
    position: relative;
   }

   .me figure{
    background-image: url(../images/astoria2.jpg);
    width: 350px; height: 450px;
    float: right;
    border: 2px solid #FFF58A;
    background-size: 150%;
    background-position: 50% 30%;
    border-radius: 30px;
    box-shadow: 10px 10px 25px  #3B9797;
    
   }
   
   /* Nav Stlying */
nav{
    max-width: fit-content;
    border: #3B9797;
    flex: row wrap;
}
nav:hover{
    background-color: #FFF58A;
    border: 3px solid #3B9797;
    color: #DDC3C3;
    transition: 150ms linear;
}

.nav_tags{
    margin: 0px 25px;
    padding-bottom: 5px;

}

.hometown_nav{
   margin: 0px 25px;
}

/* Image Styling */
img{
    border-radius: 30px;
    box-shadow: 10px 10px 25px  #3B9797;
    max-width: 100%;
    height: auto;
}

.photo_gallery{
    display: flex; /* Gets content side by side */
    justify-content: space-evenly;
    padding-top: 100px;
    padding-bottom: 30px;
}

.photo_gallery figure{
    flex: 0 0 auto;
    width: 300px;
    aspect-ratio: 1/1;
    position: relative;
}

.photo_gallery figcaption{
    position: absolute;
    bottom: 100%; left: 0%;
    width: 100%;
}

.photo_gallery figure:first-child {
    background-image: url(../images/bend1.jpg);
    background-size: cover;
    background-position: center;
}

.photo_gallery figure:last-child {
    background-image: url(../images/smithrocks.jpg);
    background-size: cover;
    background-position: center bottom;
}

ul{
    margin: 0px 37px;
}

/* Footer Styling */
footer{
    position: relative;
    background-color: #6B3F69;
    opacity: .7;
    color: #EEE;
    text-align: center;
    font-size: 12px;
    margin: 15px;
    padding: 2px;
    margin: 0px 25px;
}

footer h2{
    color: #3B9797;
}

footer a{
    color: #EEE;
}

.index_footer{
    max-width: 60%;
}



