html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;
    font-size: 95%;
    font-family: Arial, Helvetica, sans-serif;
}
.wrapper{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #17B2EB;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.card{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    width: 25%;
    height: 45%;
    margin: 10px;
}

.card a{
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: #093a58;

}

.card .text{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-size: 1.5em;
    font-weight: bolder;
}
/**
Mobile
 */

@media only screen

and (max-width: 575px)
{

  .wrapper{
      flex-direction: column;
  }
    .wrapper .card{
        width: 50%;
        height: 50%;
    }
    .cardForm .form{
        display: flex;
        flex-direction: column;
        overflow: auto;
    }

}

@media only screen

and (max-width: 1024px) {

    .wrapper{
        flex-direction: column;
    }
    .wrapper .card{
        width: 70%;
        height: 50%;
    }

}
/*
PARTICULE
 */
canvas{
    display:flex;
    position: absolute;
    z-index: 10;
}

/* ---- particles.js container ---- */

#particles-js{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
