* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: #383838;
}
footer {
    background-color: white;
    bottom: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}
#screen{
    height: 100vh; overflow-y: scroll;
    border: solid 70px;
    border-image: url(monitorborder.png) 25;
}
#feed{
    border-radius: 10px;
}
.segment {
    max-width: 600px;
    background-color: #c2c6c6;
    background-image: url("bottom shine.png");
    background-position: center bottom;
    background-blend-mode: luminosity;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 20px;
    margin: 20px;
    border: solid 1px #9d9d9d;
    border-radius: 15px;
}
.pfp {
    float: left;
    margin: 0 10px 0 0;
    width: 50px;
    height: 50px;
    border: white 1px solid;
    border-radius: 100px;
}
.datetime {
    background-color: rgba(0, 0, 0, 0.14);
    color: #ffffff;
    font-size: small;
}
.textpost {
    background-color: rgba(255, 255, 255, 0.59);
    margin: 10px 0 10px 0; padding: 10px; 
    border: solid 1px white; border-radius: 5px;
}
.postimg {
    border: 1px rgba(255, 255, 255, 0.41) solid;
    border-radius: 10px;
    width: 100%;
}
h1 {
    display: inline;
}
.flag {
    padding: 10px;
    display: none;
}
.warn {
    background-color: rgba(255, 217, 0, 0.51);
    display: inherit;
}
.picked {
    background-color: rgba(100, 149, 237, 0.39);
    display: inherit;
}
