html{
    background-color: #151516;
    /* background-image: repeating-linear-gradient(30deg, transparent, transparent 7px, rgba(255, 255, 255, 0.05) 7px, rgba(255,255,255,.05) 10px); */
    /* background-color: hsl(0, 0%, 39%); */
    background-image: url("images/bg2.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    
    /* background-blend-mode: multiply; */
    
    background-attachment: fixed;
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.background-blur{
    margin:0;
    padding: max(min(20px, calc(5% - 20px)),0px);
    
    /* backdrop-filter: blur(10px); */
}
body{
    margin: 0 0;
}
.content{
    border-top-right-radius: 15px;
    border-top-left-radius:  15px;
    background-color: #ffffffd6;
    /* backdrop-filter: blur(100px); */
    color: #333333;
    margin: 0 auto;
    max-width: 800px;
    padding: min(calc(5% - 5px), 50px);
    
    
    /* border: red; */
    /* border-style: solid; */
}

p{
    color: #787882;
    color: #4b4b53;
    text-align: justify;
    /* max-width: 65ch; */
    
    margin-inline: auto;
}
header{
    color: #15141A; 
    margin-bottom: 2rem;
}
footer{
    border-bottom-left-radius:  15px;
    border-bottom-right-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    font-size: .75rem;
    background-color: #ded9d4d6;
    color:#9e9e9e;
    color:#6a6a6a;
    /* background-color: #fffaf5d6; */
    /* backdrop-filter: blur(100px); */
    padding: 15px min(calc(5% - 5px), 50px);
}

footer a{
    color:#747d87;
    font-weight: 600;
}
h1,h2,h3,h4,h5,h6{
    text-align: center;
    text-transform: uppercase;
}
h1{
    font-weight: 900;
    /* font-size: 55px; */
    font-size: min(8vw, 50px);
    margin-block: 10px;
}
h1 > a{
    color: #15141A; 
    text-decoration: none;
}
h2{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}
.navigation_menu{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    max-width: 500px;
    margin: 1rem auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    /* font-size: 1rem; */
}
.navigation_menu hr{
    background-color:#00000000;
}
.navigation_menu a{
    display: flexbox;
    /* background-color: #15141A; */
    font-family: "Oswald", system-ui, sans-serif;
    color:#000000;
    font-weight: 800;
    text-decoration: none;
    padding: 0 .24rem;
}

.navigation_menu a:hover{
    /* color:#4e7cc2; */
    background-color: #333333;
    background-size: 10px 5px;
    background-attachment: local;
    /* color:#fffaf5; */
    color:#ffffff;
}

#current_page > a {
    /* color: #2c42c0; */
    
    background-color: #a5398f;
    background: url("images/navBg.jpg");
    /* background-position: -450px -300px; */
    background-size: 500%;
    background-position: center;
    /* background-attachment: fixed; */
    
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
    font-weight: 900;

}

#current_page > hr{
    background-color: #333333;
}
.footer_flex{
    display: flex;
    justify-content: space-between;
}

.footer_flex > li{
    list-style-type: none;
}

/* .flex_column{
    display: flex;
    flex: auto;
    flex-direction: column;
    align-items: flex-start;
} */

.flex_row{
    display: flex;
    flex: auto;
    flex-direction: row;
    flex-wrap: wrap;
    
    align-items: flex-start;
}
.flex_row>div{
    
    /* margin-inline: auto; */
}
.flex_row>div>p{
    margin-top: 0;
}

hr{
    width: 70%;
    height: 2px;
    color: black;
    border-width: 0;
    border-radius: 1px;
    background-color: #333333;
}
img{
    max-width:100%;
}