
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    position: relative;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::selection{
    background: #04151F;
    color: #fcf8ff;
}

.navbar{
    width: 100%;
    height: 9vh;
    position: fixed;
    top: 10;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0vw;
    background: #fcf8ff;
    z-index: 9;
}

.links-container{
    display: flex;
    padding-top: 2vw;
    list-style: none;
}

.link{
    padding: 10px;
    margin-left: 10px;
    text-decoration: none;
    text-transform: capitalize;
}

.link-item a{
    color: #331c49;
}
.link-item a:visited{
    color: #331c49;
}

.link-item a:hover{
    color: #b759f5;
}

.link-item a:active{
    color: #04151F;
}

.header{
    margin-top: 0px;
    width: 100%;
    height: 100vh;
    background: url(../img/Cover.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}


.content{
    text-align: center;
}

.heading{
    color: #fcf8ff;
    text-transform: capitalize;
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 80px;
}

.heading .small{
    display: block;
    font-size: 40px;
}

.heading .no-fill{
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #fcf8ff;
}

.btn{
    padding: 10px 20px;
    border-radius: 10px;
    background: #fcf8ff;
    color: #04151F;
    text-decoration: none;
    text-transform: capitalize;
}


.blogs-section{
    width: 110%;
    height: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content:  center;
    overflow-x:  auto;
    white-space: nowrap;
}
.blog-card{
    height: 100%;
    width: 70%;
    border-width: 3vw;
    padding: 3vh 3vw;
     
}

.blog-image{
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog-overview{
    margin: 10px 0 20px;
    line-height: 30px;
    width: 100%;
    height: auto;
   
    white-space: pre-Wrap;
}

.btn.dark{
    background: #04151F;
    color: #fcf8ff;
}
.btn.dark:hover{
    background: #331c49;
    color: #fcf8ff;
}

.footer{
background:#fcf8ff;
padding:30px 0px;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#b759f5;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

@media (max-width:720px){
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
margin:0% 3%;
}
}