.title {
    color: white;
    font-size: 30px;
    width: 500px;
    height: fit-content;
    text-align: center;
    font-family: 'Kanit', sans-serif;
    font-variant: small-caps;
    text-align: center;
    transition: all .5s ease;
}
.title-sec {
    border-radius: 25%;
    border: 2.5px solid white;
    width: fit-content;
    box-sizing: content-box;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    display: flex;
    z-index: 2;
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}
.title-sec:hover {
    color: black;
    background-color: white;
    border: 2.5px dotted black;
    transform: scale(1.01);
}
.title-sec:hover span {
    color: black;
    font-weight: bolder;
}
.title-sec a {
    text-decoration: none;
}
.bio {
    background-color: black;
    position: relative;
    bottom: 12px;
    border-radius: 5%;
    border: 2.5px solid white;
    box-sizing: content-box;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    z-index: 2;
    margin-bottom: 0px;
    transition: all .5s ease;
    border-top-left-radius: 0;
}
.bio p {
    text-indent: 20px;
}

.contain-posts {
    padding: 25px;
    margin: auto;
    background-image: url(skill-bg.png);
    color: white;
    border-radius: 10%;
    border-bottom: 15px groove rgb(0, 0, 0);
    background-size: cover;
    transition: all 1s ease;
    clear: right;
}
.contain-posts a{
    text-decoration: none;
}
.date {
    display: inline-block;
    font-weight: medium;
    font-size: xx-large;
    font-family: 'Chakra Petch', sans-serif;
    background-color: rgb(0, 0, 0);
    padding: 15px;
    color: white;
    margin-bottom: 0px;
    font-variant-caps: small-caps;
    height: fit-content;
    width: fit-content;
    border-radius: 10%;
}
.date a {
    text-decoration: none;
}
.blog-post {
    padding: 25px;
    width: 100%;
    position: relative;
    right: 20px;
}
.post-desc {
    background-color: black;
    position: relative;
    bottom: 12px;
    border-radius: 5%;
    border: 2.5px solid white;
    box-sizing: content-box;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    z-index: 2;
    margin-bottom: 0px;
    transition: all .5s ease;
    border-top-left-radius: 0;
}
.post-desc:hover {
    transform: scale(1.01);
    background-color: white;
    color: black;
    border: 2.5px solid black;
}
.post-desc:hover p {
    color: black;
    font-weight: 600;
}
.post-desc:hover .date {
    color: black;
    text-transform: capitalize;
    background-color: white;
    border: 2.5px solid black;
}
.post-desc:hover img {
    border: 2.5px solid black;
}
.contain-posts img {
    float: right;
    background-color: rgb(0, 0, 0);
    margin: 0px 15px 0px 0px;
    height: 200px;
    width: 200px;
    border: 1px solid white;
    transition: all .5s ease;
    border-radius: 20%;
}