
.container{
    border: 5px solid black;
    margin: 0;
    padding: 0;
}

h1{
    color:white !important;
    background-color: rgb(60, 60, 249);
    padding: 25px;
} 

.row{
    display:flex ;
    flex-direction: row;
    flex-wrap: wrap;
}

.card{
    display: flex;
    width:300px;
    height:300px;
    background-color: aqua !important;
    margin-bottom:30px !important;
    margin-left: 40px;
}

/* Media Queries */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .card {
        width: 250px;
        height: 250px;
        margin-bottom: 20px !important;
        margin-left: 25px !important;
    }
}

@media screen and (max-width: 470px){
    .card {
        width: 230px;
        height: 230px;
        margin-bottom: 10px !important;
        margin-left: 15px !important;
        justify-content: center;
        align-items: center;
    }
}

