*{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    user-select: none;
}

body {
    overflow-y: scroll;
}

.content {
    width: 800px;
    height: auto;
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%); 
    position: absolute;
    transition: all .5s ease-in-out;
    display: flex;
    justify-content: center;
}

.title {
    width: auto;
    height: 133px;
}

.site-title {
    width: auto;
    height: auto;
    font-size:100px;
    text-align: center;
    font-weight: 100;
    transition: all .5s ease-in-out;
}

.posts-container {
    width: 950px;
    height: auto;
    opacity: 0;
    display: none;
    margin-top: 20px;
    transition: all .5s ease-in-out;
}

.posts-title {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    font-weight: bold;
}

.post {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    width: auto;
    height: auto;
}

.seperator {
    width: auto;
    height: 1px;
    background-color: #bfbfbf;
    margin-top: 16px;
    margin-bottom: 16px;
}

h3 {
    border-bottom: 1px solid black;
}

h2 {
    border-bottom: 1px solid black;
}

h1 {
    border-bottom: 1px solid black;
}