main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.poststitle {
    color: white;
    border-radius: 10px;
    text-align: center;
    animation: summon 2s;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: black;
    padding: 20px;
}

.posts main h2 {
    display: flex;
    flex-direction: column;
    color: white;
}

.post {
    background-color: black;
    color: white;
    text-align: center;
    animation: summon 2s;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    max-width: 90vw;
    min-width: 150px;
    min-height: 100px;
}

.posts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 90vw;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.rowcla {
    display: flex;
    flex-direction: row;
}

.posts main p {
    display: block;
    white-space: initial;
    word-wrap: break-word;
    max-width: 100%;
}

.buttn {
    color: white;
    border: 5px;
    border-style: solid;
    cursor: pointer;
    border-radius: 10px;
    width: 120px;
    margin-top: 10px;
    margin-left: 10px;
    display: flex;
}

.editbuttn {
    background-color: orange;
    border-color: orange;
}

.deletebuttn {
    background-color: red;
    border-color: red;
}

.backbuttn {
    align-items: center;
    justify-content: center;
    height: 26px;
    background-color: royalblue;
    border-color: royalblue;
}

.likebuttn {
    background-color: navy   ;
    border-color: navy;
}

.unlikebuttn {
    background-color: firebrick;
    border-color: firebrick;
}
.makebuttn {
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: green;
    border-color: black;
    width: 200px;
    animation: summon 2s;
}

@media (max-width: 500px) {
    .rowcla {
        flex-direction: column;
    }
}
@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}