a:link{color:#0000ff;}
a:visited{color:#0B0080;}
a:active{color:#7FFF00;}

body{
     margin:1em auto;
     max-width:40em;
     padding:0 .62em;
     max-width:none;
     color: #000000;
     background-image: url('yellow_stucco.gif');
     background-repeat: repeat;
     background-size: auto;
/*     font-family: 'IBM Plex Serif', serif; */
}


img {
  max-width:100%;
}

@media all and (orientation: landscape) {
  /* Target device in landscape mode */
}

@media all and (orientation: portrait) {
  /* Target device in portrait mode */
}

.content {
    width: 400px;
    border: 4px solid red;
    padding: 20px;
    overflow: hidden;
}

.content img {
    margin-right: 15px;
    float: left;
}

.blink {
  animation: blinker 2s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
