@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

/* font-family: 'PT Sans', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Share Tech Mono', monospace; */

* {
    margin: 0;
}

:root {
    --color-nav: #262626;
    --color-primary: #1c83e5;
    --color-grey: #525252;
    --color-off-white: #f3efe7;
    --color-off-white-light: #ededed;
    --color-section-shadow: #999999;
    --color-dark-blue: #1c2960;
}

body {
    font-family: 'PT Sans', sans-serif;
}

.section {
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 3px 5px 5px var(--color-section-shadow);
}

.off-white {
    background-color: var(--color-off-white);
    border-radius: 1rem;
}

.off-white-light {
    background-color: var(--color-off-white-light);
    border-radius: 1rem;
}

.highlight {
    color: var(--color-primary);
}


.style {
    font-size: 20px;
    color: var(--color-grey);
    letter-spacing: 0.2rem;
    font-family: 'Roboto Mono', monospace;
}

.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}

.navigation {
    padding: 1rem;
    height: auto;
    width: auto;
    background-color: var(--color-nav);
    opacity: 0.99;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: sticky;
    top: -80px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 3px 3px 5px #242424;

}

.nav-heading {
    padding: 0.5rem;
    margin: 0.5rem;
    display: block;
}

.nav-heading>h2 {
    color: whitesmoke;
    font-weight: 100;
    letter-spacing: 0.1rem;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
@media screen and (max-width:768px){
    .nav-buttons{
        display:flex;
        justify-content: space-evenly;
        margin:auto;
    }
}

.nav-button {
    margin: 1rem;
    cursor: pointer;

}


.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}

.header {
    padding: 1rem;
    margin:0.5rem 0;
    background:url("./images/blogs_headerImage.jpg");
    background-repeat:no-repeat;
    color:#fff;
    height:auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    box-shadow:5px 5px 8px var(--color-grey);
    border-radius:10px;

}

.header>marquee{
    font-family: 'Roboto Mono';
    letter-spacing: 3rem;
    color:var(--color-primary);
    font-weight:bold;
    font-size:25px;
    padding:1rem 2rem;
    

}
.header>marquee>span:hover{
    color:red;
}

.header-title{
    padding:1rem;
}

.header-title>h2{ 
    font-family: 'Share Tech Mono', monospace;

    font-size:40px;
    text-align:center;
    font-weight:700;
    color:var(--color-off-white-light);
}

.header-desc{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    margin:auto;
    padding:1rem;
    max-width:900px;
    font-size:20px;

}

.header-desc>p{
    font-size:25px;
}

.section-blog{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    padding:1rem;
    justify-content:space-around;

}

.section-blogInfo{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    max-width:600px;
}

.section-blogTitle>h2{
    font-size:25px;
    padding:1rem;
    margin:auto;
}

.section-blogDesc>p{
    padding:1rem;
    margin:auto;
    font-size:20px;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.section-blogView{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    margin:auto;
}


.section-blogView>img{
    padding:1rem;
    border-bottom:2px solid var(--color-primary);
    border-right:2px solid var(--color-primary);
    border-radius:10px;
    box-shadow:5px 5px 8px var(--color-grey);
    margin:1rem auto;
    width:400px;
    height:auto;
    
}
@media screen and (max-width:768px){
    .section-blogView>img{
        width:300px;
    }
}

.section-blogButton{
    display:flex;
    justify-content:center;
    border:2px solid var(--color-primary);
    padding:0.5rem;
    border-radius:5px;
    cursor:pointer;

}

.section-blogButton:hover{
    background-color: var(--color-section-shadow);
    
}

.section-blogButton>a{
    font-size:30px;
    font-weight:700;
}



