        *{
           margin : 0;
           padding: 0;
           box-sizing: border-box;
       }

       @keyframes  random {
        5% { background-color: lightslategray; } 
        10% { background-color: gainsboro; } 
        15% { background-color: lightgray; } 
        20% { background-color: silver; } 
        25% { background-color: dimgray; } 
        30% { background-color: darkgray; } 
        35% { background-color: gray; } 
        40% { background-color: slategray; } 
        45% { background-color: darkslategray; } 
        50% { background-color: gainsboro; } 
        55% { background-color: lightslategray; } 
        60% { background-color: ghostwhite; }
        65% { background-color: blanchedalmond; } 
        70% { background-color: gray; } 
        75% { background-color: darkkhaki; }  
        80% { background-color: silver; } 
        85% { background-color: slategray; } 
        90% { background-color: dimgray; } 
        95% { background-color: gainsboro; } 
        100% { background-color: darkkhaki; } 
    }

    body {
        font-family: sans-serif;
        background-color: gray;
        -webkit-animation: random 50s infinite;
        animation: random 50s infinite;
        overflow: hidden;
        word-break: keep-all;
    }


    .container {
        position: absolute;
        width: 800px;
        left: 50%;
        transform: translate(-50%);
    }

    .feed { 
        display: inline-block;
        margin-top: 10px;
        margin-left: 10px;
        width: 250px;
        height: 450px;
        overflow-y: auto;
        padding: 10px;
        background-color: white;
        border-style: outset;
        overflow: hidden;
    }

    .date {
        margin-top: 10pt;
        margin-bottom: 10pt;
        text-align: center;
    }


    h1 {
        font-size: 57pt;
        font-weight: bolder;
        text-align: center;
        position: relative;
        top: 50%;
        transform: translateY(-50%);

    }

    h2  {
        font-size: 18pt;
        font-weight: bold;
        text-align: center;
        padding-top: 5px;
    }

    .title {
        color: black;
        text-decoration: none;
    }

    h3 {
        text-align: center;
        font-weight: normal;
        margin-top: 15pt;
    }

    hr {
        margin-top: 10px;

    }


    figure {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    img {
        width: 100%;
    }

    figcaption {
        text-align: center;
        font-size: 9pt;
        margin-top: 5px;
    }

    iframe {
      width: 100%;
  }

  p {
    text-align: center;
}


ul {
    position: relative;
    word-break: keep-all;
    text-align: center;
    list-style-position: inside;
}

li {
    font-size: 6pt;
    margin-top: 4pt;
    text-align: center;
    word-break: keep-all;
}

.score {
    background-color: orangered;
    border-radius: 60%;
}

.round {
    border-radius: 50%;
}


textarea {
    border: 3px dotted orangered;
    width: 100%;
    height: 50%;
    padding: 5px;
}

.otherjisu {
    padding-top: 100%;
}

.url {
    word-break: break-all;
}

::-webkit-scrollbar {
display: none;
}



@media screen and (max-width: 704px) {
  .feed { 
    display: inline-block;
    width: 60px;
    height: 170px;
    padding: 0.5px;
}

h1 {
    font-size: 20pt;
    font-weight: bolder;
    text-align: center;
}

h2  {
    font-size: 10pt;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
}

h3 {
    font-size: 6pt;
    text-align: center;
    font-weight: normal;
}

li {
    font-size: 6pt;
}

.container {
    width: 230px;
}

.date {
    font-size: 6pt;
    font-weight: normal;
}

}


