main .content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
    max-width: 1800px;
}

main .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main .title {
    margin-top: 50px;
    margin-bottom: 100px;
    border-top-style: solid;
    border-bottom-style: solid;
    padding-bottom: 30px;
    padding-top: 30px;
    border-width: 2px;
}

main .post-content h1 {
    padding-bottom: 10px;
}

main .post-date {
    padding-top: 10px;
    color: #5252aa;
}

main .post {
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
    min-height: 500px;
    padding-bottom: 10px;
    width: 500px;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

main .post-content {
    padding: 30px;
}

main .button-div {
    margin-top: auto;
    padding: 50px;
}

main .post .button {
    padding: 20px 30px;
    background-color: #222247;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0px 5px 10px rgb(131, 131, 131);
}

main .button:hover {
    background-color: #222247e1;
}


main .post-link {
    text-decoration: none;
    color: black;
}

main .title {
    text-align: center;
}

main .post-image {
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
}