 html
{
 background-image: url(grSpaceStreet/SpaceStreetWMa.jpg);
 background-repeat: no-repeat;
 background-position: center center;
 background-attachment: fixed;
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;
}
 body{margin:0;padding:0;}
/* === Анимация тайтл --- Светлых вам снов === */
 #title
{
 position:absolute;
 color:Azure;
 font-size:300%;
 top:5%;left:40%;
 text-shadow: 3px 5px 13px DarkRed;
 -webkit-text-stroke:1px black;
 cursor: pointer;
 transition: color 13s ease-in-out, text-shadow 13s ease-in-out;
}
    #title:hover {
      animation: neon-animation 21s infinite ease-in-out;
      text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #c0f,
        0 0 30px #0ff,
        0 0 40px #0ff,
        0 0 50px #0ff,
        0 0 60px #0ff;
    }

 @keyframes neon-animation {
  0%   { color: Azure;         opacity: 1; }
  10%  { color: Lavender;      opacity: 0.95; }
  20%  { color: Aquamarine;    opacity: 0.9; }
  30%  { color: Turquoise;     opacity: 0.8; }
  40%  { color: MediumOrchid;  opacity: 0.7; }
  50%  { color: Purple;        opacity: 0.6; } /* САМАЯ ГЛУБИНА */
  60%  { color: MediumOrchid;  opacity: 0.7; }
  70%  { color: Turquoise;     opacity: 0.8; }
  80%  { color: Aquamarine;    opacity: 0.9; }
  90%  { color: Lavender;      opacity: 0.95; }
  100% { color: Azure;         opacity: 1; }
}
/* Rain */
 #cnvRain{position:absolute;top:0%;left:0%;width:100%;height:100%;}
 #divRain
{
 background-repeat: no-repeat;
 background-position: center center;
 background-attachment: fixed;
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;
 position: fixed;
 top:0%;
 left:0%;
 width:100%;
 height:100%;
 opacity: 0.4;
}
/* frame */
#iframeWrapper {
 position: absolute;
 top: 0%;    /* например, отступ сверху */
 left: 0%;   /* отступ слева */
 width: 100%; /* желаемая ширина */
 height: 100%; /* желаемая высота */
 border-radius: 0;
 overflow: hidden; /* текст выйдет за границы блока. */
 background: transparent;
}
#iframeWrapper iframe {
  left:8%;
  top:4%;
  width:84%;
  height:96%;
  border: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
