@import url('https://fonts.googleapis.com/css2?family=Raleway+Dots&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Raleway Dots", sans-serif;
    font-weight: 600;
    font-style: normal;
}
html{
    height: 100%;
    width: 100%;
}
body{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right,rgba(2, 154, 255, 0.902),rgba(238, 0, 255, 0.934));
    flex-direction: column;
}
.topContainer{
    height: 200px;
    width: 840px;
    background-color: rgba(255, 255, 255, 0.56);
    margin-bottom: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    flex-direction: column;
    padding-bottom: 20px;
    z-index: 1;
}
.textDate{
    margin-top: 15px;
    font-size: 50px;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.card{
    height: 250px;
    width: 240px;
    margin: 0px 30px;
    background-color: rgba(255, 255, 255, 0.56);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:190px;
    padding-bottom: 40px;
}
.text{
    height: 50px;
    width: 240px;
    margin: 30px 30px;
    background-color: rgba(255, 255, 255, 0.56);;
    border-radius: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease;
}
@media screen and (min-width: 600px) and (max-width: 900px) {
    body{
        flex-wrap: wrap;
        flex-direction: row;
    }
    .topContainer{
        width: 550px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 600px) {
    body{
        flex-wrap: wrap;
        flex-direction: row;
    }
    .topContainer{
        width: auto;
        padding: 10px;
        font-size: 40px;
        height: 100px;
        margin-top: 30px;
    }
    .textDate{
        font-size: 30px;
    }
}