body {
    margin: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100vw;
    height: 100vh;
}

a, button {
    background-color: lightblue;
    color: black;
    padding: 4px;
    border-radius: 4px;
    text-decoration: none;
}

a:hover, button:hover {
    background-color: violet;
}

.post {
    background-color: lightgray;
    padding: 4px;
    width: 85%;
    height: 150px;
    margin: 4px;
    border-radius: 8px;
}

#create-post-access { 
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 4px;
    margin-bottom: 4px;
}

.COP {
    background-color: gray;
    border-radius: 4px;
    padding: 16px;
    position: relative;
    top: 25%;
    left: 25%;
    width: 200px;
}

.COP * {
    margin-bottom: 12px;
}

#container {
    margin: auto;
    width: 85%;
}