
body.show_feed{
    height:auto;
}


#cityscape_banner {
    position:absolute;
    top:100px;
    left:0;
    background-repeat: repeat-x;
    background-image: url('/static/images/background_repeat.png'); 
    height:70%;
    width:100%;
    z-index:-1

}

.header_search {
    margin: 0;
    display: flex;
}

#search_bar_header {
    width: 100%;
    margin-bottom: 15px;
}

.search_icon_frame {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 25px 25px 0px;
    border-top: 2px solid #FC851D;
    border-right: 2px solid #FC851D;
    border-bottom: 2px solid #FC851D;
    background-color: #342c43;
    padding-block: 0;
    padding-inline: 0;
    border-left-width: 0;
    padding: 5px;
}

.search_icon_button {
    background-color: #394547;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 100%;
    border: 2px solid #415154;
}

.search_icon{
    width: 70%;
    align-self:center
}

.header_bar {
    width:100%;
    height:45px;
    border-radius: 25px 0 0 25px; 
    background-color: #342c43;
    border-top: 2px solid #FC851D;
    border-left: 2px solid #FC851D;
    border-bottom: 2px solid #FC851D;
    border-right: 2px solid #342c43;
    font-family: "Economica", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    border-right-width: 0;
    padding-left: 10px;
    caret-color: white;
}

.header_bar:focus {
    outline: none;
    background-color: #342c43;
}

.header_bar:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #342c43 inset !important;
    -webkit-text-fill-color: white;
}

.header_bar:-moz-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #342c43 inset;
    -webkit-text-fill-color: white;
}

#header {
    background-color:#5c3a64;  
    align-items:center;
    display:grid; 
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}

.header_container_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

div.header_container {

    margin-bottom:20px

}

#nav_container{
    margin:auto;
    display:flex;
    height: 75px;
    /* width: 70vh; */


}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #FC851D;
    border-radius: 50%;
    background-color: #342c43;
    width: 67px;
    height: 67px;
    font-family: "Mouse Memoirs", sans-serif;
    color: white;
    font-size: 40px;
    margin: 9px 0;
    font-weight: 400;
}

.feedicon {
    padding: 7px 5px 0px 6px;
    width: 52px;
    height: 52px;
}



#profile_container a {
    text-decoration: none;
}

#logo{
    padding-left:3%;
}


#top_nav_bar .img_profile {
    height:95%;
    width:95%;
    display:block;
    margin-left: auto;
    margin-right:auto;
    margin-top:2.5%;
}

.profile.site_header{
    width:67px;
    height:67px;
}

.profile.loggedin.site_header{
    width:100%;
    height:100%;
    border-radius:50%;
    cursor:pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.profile.loggedin.site_header:hover{
    transform: scale(1.05);
    box-shadow: 0 0 0 2px #FC851D, 0 0 10px rgba(252,133,29,.35);
}

img#expanded_profile{
    width:244px;
    height:244px;
}

h2#profile_monster_name{
    font-family: "Economica", sans-serif;
    color:white;
    margin:auto;
    font-size: 32px;
}

.page_container {
    flex: 1;
    min-height: 60vh;
    margin-bottom: 100px;
}


/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* %%                      footer                     %% */
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
#footer {
    margin-top:25vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #342c43;
}

.footer_separator {
    width: 100%; 
    height: 9px;
    margin-bottom: 2%;
    background-color:#FC851D
}

.footer_container {
    margin-left: 35%;
    margin-right: 35%;
}

.footer_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 4%;
}

.footer_links {
    display: flex;
    flex-direction: column;
}

.footer_links h3 {
    font-family: "Mouse Memoirs", sans-serif;
    color: #FC851D;
    font-size: 32px;
    margin: 9px 0;
    font-weight: 400;
}

.footer_links a {
    font-family: "Economica", sans-serif;
    color: white;
    font-size: 20px;
    margin: 6px 0;
    text-decoration: none;
}

.footer_links a:hover {
    background-color: #5e507975;
    border-radius: 15px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.footer_bottom h5 {
    font-family: "Mouse Memoirs", sans-serif;
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.contact_links {
    display: flex;
    gap: .5rem;
}

.contact_links img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.contact_links img:hover {
    transform: scale(1.25);
}



@media only screen and (max-width: 600px) {
 
    div.footer_container{

        margin-left:15%;
        margin-right:15%

    }
    
    .footer_links h3{
        font-size:24px;
    }

    .footer_links a{
        font-size:18px;
    }

}