h1 img  { width:10%; vertical-align: middle;}
h1 {text-align: center;}
.lamp {
    width: 50px;
    height: 150px;
    background-color: #000;
    border-radius: 10px;
  }
  
  .lamp2 {
    width: 50px;
    height: 150px;
    background-color: #000;
    border-radius: 10px;
  }
  
  .sos-animation {
    animation: sos-blink 4.275s infinite linear; 
    animation-timing-function: cubic-bezier(0.55, 0.76, 0.86, 1);
  }
  
  @keyframes sos-blink {
    3.5%, 9.9%, 16.4%, 31%, 42.7%, 54.4%, 63.7%, 70.2%, 76.6% { background-color: #ff0000; }
    6.4%,12.87%,22.22%,33.92%,45.61%,60.23%,66.66%,73.1%,100% { background-color: #ffffff; }
    100% { background-color: #000; }
  }
