*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: linear-gradient(#a306ad, #0d002e);
   height: 85vh;
    text-align: center;
}
h1 {
    color: #fff;
    font-size: 75px;
    text-transform: uppercase;
    width: 42%;
    margin: 100px auto 30px;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #fff,#71027805,#71027800, #fff) 1;
    text-shadow: 0px 3px #000;
}
h5 {
    font-size: 22px;
    color: #b7b6b6;
    font-weight: 400;
    text-transform: uppercase;
}
.countdown-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
    margin: 45px auto;
}

.box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2c0045;
    color: #fff;
    border-radius: 5px;
    font-size: 45px;
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    text-shadow: 2px 5px #000;
    position: relative;
}

.box span {
    font-size: 22px;
    position: absolute;
    top: 115%;
    font-weight: 400;
    color: #fff;
    text-shadow: 3px 3px #000;
}