*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "rubik",sans-serif;
    font-size: 30px;
}
body{
    background-color:#EDCD44 ;
}
.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    width: 80vmin;
    padding: 50px 40px;
    background-color: #1803A5;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    box-shadow: 25px 25px 50px#2b1aa0;
}
span{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 100px;
}
p{
    font-size: 16px;
    color:white;
    font-weight: 400;
    text-align: center;
    word-wrap: break-word;
    line-height: 35px;
    margin: 30px 0;
    opacity: 0;
}
.fade{
    opacity: 1;
    transition: opacity 1.5s;
}
button{
    display: block;
    background-color: #EDCD44;
    border: none;
    padding: 7px;
    font-size: 20px;
    color: rgb(12, 3, 3);
    font-weight: 600;
    padding: 15px 30px;
    margin: 7px;
    border-radius: 7px;
    cursor: pointer;
    text-align: center;
}