:root {
    --main-bg-color:#CEAAE3;
    --sub-bg-color:#C096E3;
    --mid-color:#AC73DE;
    --text-color:#9C52D9;
    --big-text-color:#8543CC;
}

body {
    background-color:var(--main-bg-color);
    color:white;
    display:flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    align-items: center;
}
h1, h2, h3, h4, h5, h6 {
    color:var(--big-text-color);
}
a {
    text-decoration: none;
}
#ServicesGrid {
    display:grid;
    grid-template-columns: repeat(5, 1fr);
}
#servicesGrid a {
    display:inline-block;
    width:fit-content;
}

.service {
    height:250px;
    width:250px;
    display:flex;
    flex-direction: column;
    border:hsl(from var(--sub-bg-color) h s 50%) 1px solid;
    background-color: var(--sub-bg-color);
    border-radius:10px;
    align-items: center;
    color:var(--text-color);
    justify-content: center;
    text-align:center;
    transition:.2s;
}
.service:hover {
    box-shadow: 2px 2px 5px gray;
}

.service img {
    height:200px;
    width:200px;
}

#postsContainer {
    display: flex;
    width: 750px;
    justify-content: center;
    flex-direction: column;
}
.post {
    background-color: hsl(from var(--main-bg-color) h s 75%);
    border: var(--sub-bg-color) 1px solid;
    padding:5px;
    display:flex;
    flex-direction: column;
    border-radius:10px;
    margin:5px 0;
}
.post h1 {
    text-align:center;
}
.post .date {
    color:lightgray;
    font-style: italic;
    margin:-20px auto 0 auto;
}