body
{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: black;
}


h1
{
  margin: 0;
  padding: 5px;
  text-align: center;
  font-size: 25px;
  color: #ccc;
}
h5
{
  margin: 0;
  padding: 5px;
  text-align: center;
  font-size: 10px;
  color: #ccc;
}

ul
{
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 85%;
  background: #ccc;
  margin: 0;
  padding: 0;

}
ul li{
  list-style: none;
  position: relative;
  width: 20%;
  height: 100%;
  border-right: 2px solid #ccc;
  float: left;
  box-sizing: border-box;
  transition: 0.5s;
  text-align: center;
  overflow: hidden;
}
ul li:nth-child(1)
{
  background: url(images/bg1.jpg);
  background-size: cover;
  background-position: left;
}
ul li:nth-child(2)
{
  background: url(images/bg2.jpg);
  background-size: cover;
  background-position: left;
}
ul li:nth-child(3)
{
  background: url(images/bg3.jpg);
  background-size: cover;
  background-position: left;
}
ul li:nth-child(4)
{
  background: url(images/bg4.jpg);
  background-size: cover;
  background-position: left;
}
ul li:nth-child(5)
{
  background: url(images/bg5.jpg);
  background-size: cover;
  background-position: left;
}

ul:hover li
{
  width: 10%;
}
ul li:hover
{
  width: 60%;
}
ul li .content
{
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  color: #fff;
  opacity: 0;
}
ul li:hover .content
{
  bottom: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}

a
{
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height:60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
box-sizing: border-box;
background: linear-gradient(90deg, #03a9f4, #ffeb3b, #03a9f4);
background-size: 400%;
border-radius: 30px;
z-index: 1;

}
a:hover
{
animation: animate 8s linear infinite;
}
@keyframes animate
{
0%
{
  background-position: 0%
}
100%
{
  background-position: 400%
}
}
a:before
{
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
z-index: -1;
background: linear-gradient(90deg, #03a9f4, #ffeb3b, #03a9f4);
background-size: 400%;
border-radius: 40px;
filter: blur(20px);
opacity: 0;
transition: 0.5s;
}
a:hover:before
{
filter: blur(20px);
opacity: 1;
animation: animate 8s linear infinite;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
p
{
  padding: 5%;
}
