html{
    height: 100%;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f283f;
    line-height: 25px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 90wh;
    min-height: 90vh;
    height: 100%;
   
}
.all_content{
    position: relative;
    height: 90vh;
    width: 100%;
    max-width: 800px;
    width: 80vh;
}
.all_content {
    /* padding-left: 20px;
    padding-right: 20px; */
    height: 100%;
    width: 100%;
    max-width: 800px;
    min-width: 200px;
    
   
}
header h1{
    font-family: Open Sans;
    text-align: center;
    /* background-color: #333; */
    background-color: #0f283f;
    color: white;
    margin: 0;
    padding: 20px;
}
a{
    color: inherit;
    text-decoration: none;
}
.url_underline{
    text-decoration: none;
border-bottom: 2px dashed rgb(27, 179, 47); /* Adjust the width, style, and color as needed */
}
main {
    min-height: calc(90vh - 220px);

    font-size: 18px;
    padding: 20px;
    padding-top: 0px;
    color:#7a2048 ;
    animation: fadeIn 1.5s ease forwards;
    font-family:'Titillium Web','Playfair Display', 'Montserrat';
}


.blog-post {
    color: white;
    background-color: #002C54;
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
    
}
@keyframes fadeIn {
    from {
        opacity: 0;
        /* Start with opacity 0 */
    }

    to {
        opacity: 1;
        /* End with opacity 1 */
    }
}
.blog-post h2 {
    line-height: 1.4;
   font-family: Open Sans;
   /* font-size: 3vh; */
margin: 0px;
padding: 3px;
}

.blog-post .date {
    /* color: #888; */
    font-size: 0.9em;
    padding: 0px;
margin-top: 0px;
    opacity: 70%;
    margin-left: 2px;
    margin-bottom: 10px;
}
.fa-calendar-check{
    padding-left: 2px;
    padding-right: 5px;
}
.hook_title{
    /* padding: 10px 0px 10px 0px; */
   margin-top: 0px;
   margin-bottom: 15px;
    
}
.read-more {
    display: inline-block;
    padding: 10px 10px;
    /* background-color: #333; */
    background-color: #08c9e2;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
}
a:active {
    color: red;
}
.fa-circle-chevron-down{
    transform: rotate(270deg);
    margin-left: 4px; 
    vertical-align: auto;  
}

.read-more:hover {
    transition: all .3s ease-in;
    background-color: #000000;
    color: #08c9e2;
}

footer {

    background-color: #0f283f;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;

}
footer  .connectme {
width: 200px;
background-color: transparent;
cursor: pointer;
border: 0px;
}
footer  .connectme img{
    user-select: none;
    width: 100%;
    filter: brightness(0) saturate(100%) hue-rotate(0deg) invert(100%);
}
/* nav */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #a280c5;
}

nav {
    display: flex;
}

nav a {
    margin-left: 20px;
    color: #e2d1f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #a280c5;
}

main {
    flex-grow: 1;
    margin-top: 10px;
    min-height: 70vh;
}

.menu_icon {
    display: none;
    cursor: pointer;
    color: #e2d1f9;
    font-size: 1.5em;
}

/* Media query for small screens */
@media screen and (max-width: 375px) {

    nav {
z-index: 100;
        display: none;
        width: 100px;
        flex-direction: column;
        position: absolute;
        right: 20px;
        top: 45px;

        background-color: #08191b;
        border: 1px solid #383838;
        border-radius: 40px 0px 30px 0px;
        padding: 10px;
        box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.2);
        animation: fadeIn 0.5s ease-in-out;
        margin: 0;
        padding: 0;
        font-family: 'Times New Roman', Times, serif;
    }

    nav a {
        margin: 10px 0;
        padding-top: 16px;
        padding-bottom: 16px;
        width: 100%;
        text-align: center;
        color: #e2d1f9;

    }

    nav a:last-child {
        border-bottom: none;
    }

    .menu_icon {
        display: block;
    }
}
