body{
    background: linear-gradient(-45deg,#00FFFF,#00abf0);
    color: #fff;
    text-shadow: 0 0 10px dimgray;
}
.h1{
    font-size: 2em;
}
.img-test{
    background: #DDD;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: #888888;
    width: 100%;
}
.img-test img{
    width: 100%;
}
.second{
    align-items: center;
    align-content: center;
}
.footer{
    padding: 20px 0;
    color: gray;
}
.footer ul{
    display: flex;
    list-style-type: none;
}
.footer ul li{
    padding: 0 10px;
}
.footer ul li a{
    color: gray;
    text-decoration: none;
    transition: all .3s;
}
.footer ul li a:hover{
    color: black;
}
.container{
    padding: 80px 0 50px 0;
}
.btn-custom{
    background: transparent;
    border: 1px white solid;
    border-radius: 20px;
    transition: all .3s;
}
.btn-custom:hover{
    background: #fff;
}
.form-group{
    padding-top: 10px;
}