.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  height: 200px;
  margin-top: 50px;
  Margin-bottom: 50px;
}
.container .skewBtn {
  font-family: Sans-serif;
  font-weight: 500;
  width: 250px;
  height: 80px;
  outline: none;
  cursor: pointer;
  background: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  letter-spacing: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.container .skewBtn:hover {
  border: none;
  color: white;
  font-size: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.container .skewBtnLong {
  font-family: Sans-serif;
  font-weight: 500;
  width: 250px;
  height: 80px;
  outline: none;
  cursor: pointer;
  background: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  letter-spacing: 5px;
  border-radius: 5px;
}
.container .skewBtnLong:hover {
  border: none;
  color: white;
  font-size: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Buttons */
.purple {
  border: 2px solid #512da8;
  color: #512da8;
}
.purple:hover {
  background-color: #512da8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blue {
  border: 2px solid #1976d2;
  color: #1976d2;
}
.blue:hover {
  background-color: #1976d2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.lorange {
  border: 2px solid #fbc02d;
  color: #fbc02d;
}
.lorange:hover {
  background-color: #fbc02d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.brick {
  border: 2px solid #ff5722;
  color: #ff5722;
}
.brick:hover {
  background-color: #ff5722;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
