*{
    margin: 0;
    padding: 0;
}

body{
    background: url("../images/back.png");
    background-size: cover;
    background-repeat: no-repeat;
	height: 100vh;
}

.header{
    background: #D3D3D3;
    box-shadow: 3px 3px 3px lightcoral;
}
.header h1{
    padding: 5x;
    padding-left: 5%;
    font-family: Times, "Times New Roman", Georgia, serif;
}
.logo{
    margin-top: 25px;
    text-align: center;
}

.logo img{
    height: 85px;
}

.card-group{
    width: 60%;
    margin: auto;
    margin-top: 50px;
    background: none;
}
.card-group .card{
    border: none;
    background: none;
}

.card-group .card img{
    height: 150px;
    width: 150px;
    margin: auto;
    margin-top: 20px;
}

.card-group .card .card-body{
    text-align: center;
}

.card-group .card .card-body h2{
    color: blueviolet;
    font-family: "Brush Script MT", "Courier New", monospace;
}


.card-group .card .card-body input{
    height: 40px;
    width: 80%;
    border-radius: 25px;
    border: none;
    background: lightgreen;
    box-shadow: 3px 3px 3px lightblue;
}

.footer{
    position: absolute;
    background: rgb(19,20,25);
    width: 100%;
    bottom: 0;
    text-align: center;
    color: white;
    box-shadow: 0px 0px 0px #888, 0px -10px 5px lightcoral;
}