﻿.element {
    display: inline-block;
    background-color: #0074d9;
    color: white !important;
    animation-direction: alternate;
    width: 80%;
    position: relative;
    left: 8%;
    top: -12px;
    text-align: center !important;
    font-weight: bold !important;
    font-size: 15px !important;
    padding: 5px !important;
    border-radius: 4px;
}
.element h1{
    text-align: center !important;
    font-weight: bold !important;
    font-size: 15px !important;
    padding: 5px !important;
}

@keyframes skew {
  0% {
    transform: skewX(20deg);
  }
  100% {
    transform: skewX(-20deg);
  }
}
