 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }
 body {
     position: fixed;
     top: 0px;
     left: 0px;
     min-width: 100%;
     min-height: 100%;
     z-index: -1;
   background-color: #231f20;
 }
 ::selection {
     color: #000;
     background: #fff;
 }

 .container {
   background: url("../images/backgroundbox.jpg");
   background-size: cover;
   box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 60%);
   border-radius: 2em;
 }

 .center {
     position: absolute;
     top: 52%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     padding: 1em;
     text-align: center;
 }
 .center p {
     color: #6c6c6c;
 }
 .center .text {
     margin-top: 1em;
     font-size: 16px;
 }

 .btn-outline-pink {
     color: #fb3099;
     border-color: #fb3099;
 }
 .btn-outline-pink:hover {
     color: #fff;
     background-color: #fb3099;
     border-color: #fb3099;
 }

 .footer {
    margin-top: 1em;
 }

 .logos {
    margin-top: 1em;
 }

 .logos img { margin: 0 1em; }