@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');


*{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    width: 100vw;
    background-color: blueviolet;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;

}
.counter-container{
    width: 15rem;
    height: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    margin-right: 17px;
    background-color: #201818;
    box-shadow: 0px -1px 17px white

}
.fas{
    font-size: 51px;
    padding-bottom: 20px;
}
.counter{
    color: gold;
    font-size: 36px;
    font-family: fantasy;
}
span{
    font-size: 29px;
    color: #f1ecec;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}
