@import "fontsource/sora/index.css";

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



body{
    min-height: 100vh;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    background-color: #FAFAF9;
    font-family: "Sora", sans-serif;
    font-size: 14px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
   justify-content: center;
   align-items: center;;
}

.container {
    padding: 16px 16px 20px 16px;
    background-color: #FFFFFF;
    margin-top: 164px;
    border-radius: 16px;
    box-shadow: 8px 8px 20px 0px rgba(85, 85, 85, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.container:hover{
    transform: translateY(-5px);
}

.section {
    width: 336px;
    text-align: justify;

}

.section img{
    width: 336px;
    height: 152px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.tag {
    display: inline-block;
    background-color: #F2EAFD;
    color: #6410CB;
    font-size: 10px;
    font-weight:700;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

h1 {
    font-size: 18px;
    font-weight: 700;
    color: #20293A;
    margin-bottom: 6px;
}

.blog-text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #6b7280;
    line-height: 1.4;
}


.blog-footer{
    border-top: 1px solid #E5EAF0;
    padding: 12px 0 0 0;
    font-size: 12px;
    color: #6b7280;
}

.author-info {
    font-size: 14px;
    text-align: center;
    margin-top: 166px;
    color: rgb(55, 65, 81);
    position:relative;
    margin-bottom: 65px;
}

.author-info a {
text-decoration: none;
}

.author-info a:hover {
text-decoration: underline;
}

