* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgb(0, 155, 155);
    background: linear-gradient(145deg, rgba(0, 155, 155, 1) 0%, rgba(0, 108, 191, 1) 100%); */
    background-image: url('../img/bg.png');
    background-size: cover;
}

.card-custom {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    /*border-radius: 12px;*/
    /*border: 1px solid #cccccc;*/


    border: 1px solid white;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,.7);
    border-radius: 1.5625em;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 2px 80px rgba(59,42,130,.06);


    min-height: 120px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    /*box-shadow: 5px 4px 35px -18px rgba(0, 0, 0, 1);*/
    /*-webkit-box-shadow: 5px 4px 35px -18px rgba(0, 0, 0, 1);*/
    /*-moz-box-shadow: 5px 4px 35px -18px rgba(0, 0, 0, 1);*/
    cursor: pointer;
    transition: all 1s;
}
.card-custom:hover{
    box-shadow: 5px 4px 35px -18px rgb(236, 236, 236);
    -webkit-box-shadow: 5px 4px 35px -18px rgb(236, 236, 236);
    -moz-box-shadow: 5px 4px 35px -18px rgb(236, 236, 236);
}
.card-custom:hover p{
    color: #606060;
}
.card-custom:hover img{
    transform: scale(1.1);
}
.card-custom img{
    width: 75%;
    height: auto;
    transition: all .5s;
}
.card-custom p{
    font-weight: 600;
    color: #404040;
}
h1{
    font-size: 4rem;
    margin-bottom: 4%;
}
