*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik" sans-serif;
}

body{
    background-color: yellow;
}
.wrapper{
    width: 80vmin;
    padding: 50px 40px;
    background-color: #15161a;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 5px;
    box-shadow: 30px 30px 50px rgba(97, 63, 0, 0.4);

}

span{
    display: block;
    text-align: center;
    font-size: 100px;
}

p{
    font-size: 16px;
    color: #ffff;
    font-weight: 400;
    text-align: center;
    word-wrap: break-word;
    line-height: 33px;
    margin: 30px 0;
}

button{
    display: block;
    background-color: #fab22e;
    border: none;
    padding: 5px;
    font-size: 18px;
    color: #171721;
    font-weight: 600;
    padding: 12px 25px;
    margin: 0 auto;
    border-radius: 5px;
    cursor: pointer;
}