@font-face {
    font-family: Retro;
    src: url(font/retro_computer.ttf);
}

@font-face {
    font-family: Gossip;
    src: url(font/gossip.otf);
}

* {
  scrollbar-color: #f5f7c5;
}

.back {
    position: fixed;
    font-family: Gossip;
    color: #f4f5d3;
    font-size: 20px;
}

body {
    background-image: url(img/gossip-bg.jpg);
    background-size: 100%;
    background-attachment: fixed;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;

}

header img {
    width: 900px;
    filter: drop-shadow(0 0 2px black);
    z-index: -1;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
}

aside {
    align-items: top;
}

.post {
    background-color: white;
    width: 500px;
    min-height: 100px;
    border-radius: 15px;
    padding: 5px 25px 10px 25px;
    margin-bottom: 20px;
}

.post p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.post h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    text-align: center;
}

nav {

}