/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body{
background-color: #D6EBFF;
margin-bottom: 2%;
color: #E2507C;
font-family: 'Crete Round', serif;
}

#all{
width: 80%;
margin: 0 auto;
}

#header{
width: 100%;
height: 150px;
border-top: 1px solid #a2d2ff;
border-left: 1px solid #a2d2ff;
border-right: 1px solid #a2d2ff;
border-bottom: 0px;
border-radius: 35px 35px 0px 0px;
background: #FFC2D1;
background: linear-gradient(0deg, rgba(255, 194, 209, 1) 0%, rgba(255, 143, 171, 1) 80%, rgba(251, 111, 146, 1) 100%);
background-position: center center;
background-repeat: repeat;
display: flex;
align-items: center;
justify-content: center;
}

#title{
margin: 0;
text-align: center;
color: #fff6f9;
text-shadow: 0px 0px 1px #000041;
}

#navbox{
margin: 0px 0px 20px 0px;
width: 100%;
background: #fff6f9;
<!--background-image: linear-gradient(to right, #d2dfcd,#e9efe6,#d2dfcd);-->
}

#navbox ul{
margin: 0;
padding: 10px;
text-align: center;
border-left: 1px solid #a2d2ff;
border-right: 1px solid #a2d2ff;
border-bottom: 1px solid #a2d2ff;
}

#navbox li{
list-style-type: none;
display: inline;
font-size: 19px;
margin: 10px;
}

.main{
width: 100%;
}

.post{
width: 100%;
}

.text{
width: 84%;
padding: 25px;
border: 1px solid #bde0fe;
margin-bottom: 20px;
background-color: #a2d2ff;
}

.textborder{
background-color: #bde0fe;
border: 1px dashed #a2d2ff;
padding: 20px;
font-size: 15px;
}

.subheaders{
margin: 0;
font-weight: normal;
font-size: 20px;
}

.date{
margin: 0;
font-size: 13px;
}

.icon{
float: right;
margin-top: 13px;
margin-left: 10px;
width: 125px;
border: 1px solid #6e756a;
}

.image-container{
  float: right;
  width: 150px;
  height: 150px;
  border: 1px solid #bde0fe;
  margin-bottom: 25px;
}

.image-container img{
  float: right;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a{
color: #a2d2ff;
text-decoration: none;
}

a:visited{
color: #799FE8;
text-decoration: none;
}

a:hover{
font-weight: bold;
}

a:active{
font-weight: normal;
}

#credit a{
color: #fff;
}

::-webkit-scrollbar{
width: 6px; 
}
    
::-webkit-scrollbar-track{
background-color: transparent;
}

::-webkit-scrollbar-thumb{
background-color: #E79D44;
}

#credit{
font-size: 11px;
position: fixed;
bottom: 0;
right: 0;
}

