* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #06e8f885;
    }
.wrapper {
    width: 400px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.wrapper h2 {
    text-align: center;
    margin: 0px 30px 50px 0px;
    background: #06e8f800;
    padding: 10px;
    width: 100%;
    color: rgb(0, 0, 0);
}
.container {
    width: 100%;
    background-color: #06e8f800;
    padding: 50px 30px;
    box-shadow: 0 20px 65px rgba(87, 11, 16, 0.3);
    position: relative;
    border-radius: 5px;
    text-align: center;
    }
    
    .display{
       box-shadow: 0 0 20px rgba(0,139,253,0.25);
       padding: 10px;
       border: 1px solid rgba(9, 82, 158, 0.29);
       background: white
    }
    .container p {
    color: #000000;
    line-height: 2;
    font-size: 19px;
    }
    .container h3 {
    color: #570c9d;
    margin: 35px 0 10px 35%;
    font-weight: 600;
    text-transform: capitalize;
    }
    .container h3::before{
      content: "- ";
      color: rgb(12, 94, 210);
    }
    .container button {
    background-color: #17203d;
    border: none;
    padding: 15px 45px;
    border-radius: 5px;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    }