body {
    font-family: Helvetica, sans-serif;
    background-color: #ffffff;
}


/* Finding your match */

.text-matching{
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #FF5A87;
}

.preloader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: white; /* background-color is important, or it will be see-through, and we don't want that! */
    text-align: center;
}

.background-heart {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 10px;
	height: auto;
	width: 200px;
	transform: scale(1);
	animation: pulse-black 1s infinite;
}

.background-heart.pink {
	background: rgba(255, 90, 135);
	box-shadow: 0 0 0 0 rgba(255, 90, 135);
	animation: pulse-pink 1s infinite;
}

@keyframes pulse-pink {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 90, 134, 0.761);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 90, 135, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 90, 135, 0);
	}
}

.loading{
    position: relative;
    height: 25px;
    width: 50%;
    border: 1px solid #FF5A87;
    border-radius: 50px;
}


.loading .loading-secondary{
    position: absolute;
    background-color: #FF5A87;
    width: 0px;
    height: 24px;
    border-radius: 50px;
    animation: loading 2s infinite linear;
}

@keyframes loading{
    0% {
      width: 0%;
    }
    25%{
        width: 50%;
    }
    50%{
        width: 75%;
    }
    75%{
        width: 85%;
    }
    100%{
        width: 100%;
    }
}

/* Legal notice */
.legal {
    padding: 15px 0;
    width: 100%;
    color: #961A27;
  }

  .styleterms {
    text-decoration: none;
    color: #EB2131;
    font-size: 13px;
    padding: 0 5px 0 5px;
    font-weight: 700;
  }

  .styleterms::before {
    color: #FE5770;

  }

  .links {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .descriptionlegal {
    font-size: 13px;
    text-align: center;
  }

  .yourDate{
    margin-top: 11px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;  }

    @media screen and (min-width: 1100px) {

        .centering {
            width: 50%;
            margin: 0 auto;
        }

        .yourDate {
            width: 50%;
        }
    }
