.container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "h h h h h" "n n n n n" "m m m m m" "f f f f f";
}

/*------------ 1.3-------------------------
---------------Main ---------------------*/

main {
    margin-top: 100px;
    margin-bottom: 100px;
    grid-area: m;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.post-odd {
    box-shadow: 11px 9px 17px -3px rgba(0, 0, 0, 0.34);
    position: relative;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.199);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 300px;
    margin: 20px;
}

.post-odd img {
    border-radius: 30px 30px 0 0;
    position: relative;
    width: 100%;
}

.post-odd h2 {
    color: white;
    font-weight: 100;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.212);
    padding: 15px 10px 10px 10px;
    line-height: 15px;
}

.post-odd h3 {
    color: rgba(54, 39, 52, 0.712);
    text-align: left;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 10px;
}

.post-odd p {
    padding: 10px;
    color: white;
    font-weight: 100;
}

.post-odd ul {
    margin-left: 40px;
}

.post-odd ul li {
    padding-bottom: 10px;
    list-style-image: url(../images/li20px.png);
    font-family: 'Special Elite', cursive;
    font-weight: 500;
    font-size: 22px;
}

.post-odd .prijs {
    margin: 10px;
    display: inline;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline;
    position: absolute;
    background-color: rgba(239, 98, 159, 1);
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-odd .prijs p {
    text-align: center;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}

.post-odd:hover {
    transform: scale(1.06);
    transition: all .26s;
}

@media(min-width:1000px) {
    .container {
        margin-top: 50px;
        display: grid;
        grid-template-columns: 1fr repeat(3, 300px) 1fr;
        grid-template-rows: 150px auto 200px;
        grid-template-areas: ". h n n ." "m m m m m" "f f f f f";
    }
}