glow-iframe-box

by lakshmipathi

HTML

<body>
  <div class=box1>
  <iframe class="media" width="560" height="315" src="http://45.79.120.74:7681" frameborder="0" allowfullscreen></iframe>
  </div>
</body>

CSS

body {
  height: 100vh;
  width: 100%;
  background: #2c2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
}
div {
  height: 315px;
  width: 560px;
  background: #2c2c2c;
  border-radius: 15px;
  margin: 20px;
  transition: all ease 0.2s;
  border: 1px solid #333;

}
.box1 {
  box-shadow: 0px 5px 10px 0px rgba(0,255,255,0.7);            
}

.box1:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 2px rgba(0,255,255,0.7);
}