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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(30, 30, 30);
    font-family: 'Stardos Stencil', cursive;
    color: rgb(200, 200, 200);
}

h1 {
    font-size: 28px;  
}


.container {
    display: flex;
    flex-wrap: wrap;
    width: 370px;
}

.square {
    width: 7px;
    height: 7px;
    border: 1px solid rgb(100, 100, 100);
    background-color: black;
}

.square.active {
    background-color: rgb(230, 230, 230);
}

.square.dots {
    background-color: rgb(200, 200, 200);
}

.days {
    margin-top: 10px;
    width: 370px;
    display: flex;
    justify-content: space-between;
}

.days span{
    width: 33%;
    text-align: center;
    font-size: 20px;
}