@import url('https://fonts.googleapis.com/css2?family=Tapestry&display=swap');

* {
    margin: 0;
    padding: 0;
    /* font-family: '', cursive; */
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #111;
    font-size: 11px;
    width: 100%;
   
}

table {
    background: white;
    width: 100%;
    border-top: 1px solid #444444;
    border-collapse: collapse;
  }
  th, td {
    border-bottom: 1px solid #444444;
    padding: 10px;
}

.container .title {
    color: #fff;
    font-size: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title::first-letter {
    color: yellow;
    font-size: 3.6rem;
}

.container .wrapper {
    display: flex;

}

.wrapper .counter {
    margin: 7rem rem;
    display: flex;
    flex-direction: column;
    height: 230px;
    width: 230px;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 0.4rem;
}

.counter .count {
    color: yellow;
    font-size: 2.5rem;
}

.counter p {
    color: #fff;
    font-size: 2rem;
    text-transform: capitalize;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

li {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border : 0;
    /* float: left; */
}

.sub {
    float: left; 
    width: 50%;
    padding: 5px;
}