* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: blueviolet;
}

.titlebar {
    color: white;
    text-align: center;
    padding-top: 10px;
}

.container div {
    width: 200px;
    color: white;
    margin: 10px;
    flex-basis: 20%;
    

}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}