body {
    padding: 0px;
}


.banner {
    background: linear-gradient(-45deg, #D8E2E2, #0F5D5E);
    width: 100% !important;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 35px;
}

.logo {
}

.header {
    vertical-align: middle;
    text-align: center;
    color: #FFFFFF;
}

.container {
    display: grid;
    justify-center: center;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto auto auto auto 50px;
    grid-template-areas:
        "topleft topright"
        "banner banner"
        "left right"
        "lower1 lower1"
        "lower2 lower2"
        "lower3 lower3"
        "footer footer"
}

.topright {
     grid-area: topright;
}

.topleft {
    grid-area: topleft;
}

.banner {
    grid-area: banner;
}

.left {
    grid-area: left;
    place-self: center;
    display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr 1fr;
}

.right {
    grid-area: right;
    place-self: center;
    display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr;
}

.lower1 {
    grid-area: lower1;
    display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr;
}

.lower2 {
    grid-area: lower2;
    display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr;
}

.lower3 {
    grid-area: lower3;
    display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr;
}

.footer {
    grid-area: footer;
    place-self: center;
}

.picture {
    grid-column: 1;
    grid-row: 1;
}

.premium {
    grid-column: 2;
    grid-row: 1;
}

.follower {
     grid-column: 1;
     grid-row: 2;
     color: blue;
}

.like {
     grid-column: 2;
     grid-row: 2;
     color: red;
}

.followreport {
     grid-column: 1;
     grid-row: 3;
}

.likereport {
     grid-column: 2;
     grid-row: 3;
}

.hashtitle {
    grid-row: 1;
}

.hashdescription {
    grid-row: 2;
}

.hashenter {
    grid-row: 3;
}

.hashdisplay {
    grid-row: 4;
}

.hashcomment {
    grid-row: 5;
}

.hashlimit {
    grid-row: 6;
}

#settings {
    grid-area: header;
    justify-self: end;
    text-align: right;
}

.button {
    border: 2px solid black;
    border-radius: 5px;
    background-color: white;
    color: black;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
}

.green {

      border-color: #4CAF50;
      color: green;
}

.green:hover {
    background-color: #4CAF50;
    color: white;
}