*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.head-title{
    color: rgb(119, 54, 179);
    font-size: 30px;
}

body{
    min-height: 100vh;
    overflow-x: hidden;
}

.container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.flexitem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-radius: 1px;
    margin-left: 10px;
    margin-right: 10px;
}

.title{
    margin-top: 20px;
    font-size: 20px;
    color: rgb(119, 54, 179);
}

img{
    max-width: 70%;
}


.column {
    float: left;
    width: 25%;
    padding: 0 10px;
  }
  
  .rows {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
}

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  

  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
    .rows{
      flex-wrap: wrap;
    }
  }
  

  .cards {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
  }


  .cards:hover {
    transform: scale(1.05);
  }


@media (min-width: 319px) and (max-width: 430px){
    .head-title{
        font-size: 14px;
    }
}

.text-center{
  text-align: center;
  color: rgb(119, 54, 179);
}