/*Usar css inline */

/*Direction*/
.flex {
  display: flex;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.align-center {
    align-items: center;
}
  
/*Width*/
.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
  
/*Decoration*/
.decoration-none {
    text-decoration: none;
}
  
/*Colors */
.color-white {
    color: #ffffff;
}
.color-black {
    color: #000000;
}
  
/*Font Weight*/
.text-bold {
  font-weight: bold;
}
.text-normal {
  font-weight: normal;
}
  
/*Position*/
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}