@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
body{
    background: #fab22e;
}
.wrapper{
    width: 80vmin;
    padding: 30px 50px;
    background-color: #333;
    position: absolute;
    /* margin: auto;
    left: 0; right: 0; top: 0; bottom: 0;
    */
    /*another way to center a div*/
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 8px;
    box-shadow: 20px 20px 40px rgba(95, 63, 0, 0.4);
}
span{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 100px;
}
p{
    color: #fff;
    font-size: 16px;
    font-weight:400;
    text-align: center;
    word-wrap: break-word;
    line-height: 30px;
    margin: 30px 0;
    opacity: 0;
}
.fade{
    opacity: 1;
    transition: opacity 1.5s;
}

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