@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;

}
body{
    background-color: #3C40C6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 1024px;
    
}
.box1{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 7px;
    background-color: white;
    padding: 10px;
}
.box1 img{
    width: 100%;
    border-radius: 7px;
    margin-bottom: 10px;
}
.box1 a{
    text-decoration: none;
    color: black;
}
.text{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text span{
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .container{
        width: 100%;
        padding: 30px;
    }
   
}
@media screen and (max-width: 425px) {
    .container{
        /* width: 100%; */
        padding: 20px 0px;
    }
   
}