* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #010409;
}

.main_containt {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-list {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 130px;
}

.post-list h1 {
    color: white;
    line-height: 2.8;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 35px;
}
.post-list-scope {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    gap: 50px;
    margin-top: 50px;
}

#readme-button {
    padding: 5px 20px;
    line-height: 20px;
    text-decoration: none;
    border: 1px solid #f1f1f110;
    font-family: "Inter", sans-serif;
    color: white;
    font-weight: 700;
    width: fit-content;
    margin-top: 20px;
}

.post-list-scope li {
    width: 800px;
    display: flex;
    flex-direction: column;
}

.post-list-scope img {
    width: 100%;
    border-radius: 5px;
}

.post-description {
    display: flex;
    width: 100%;
    height: 100%;
    justify-self: center;
    align-items: flex-start;
    flex-direction: column;
    font-family: "Inter", sans-serif;
}

.post-description span {
    color: blue;
    line-height: 2.8;
    font-size: 20px;
}
.post-description a {
    text-decoration: none;
    color: white;
    font-weight: normal;
    line-height: 1.5;
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.post-description p {
    color: white;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
}