* {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
a {
text-decoration: none;
}
h1 {
    font-weight: normal;
    font-size: 30px;
    text-transform: uppercase;
    color: #164d8e;
    line-height: 20px;
}
h2 {
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #164d8e;
    line-height: 15px;
}
.button {
  position: relative;
  width: 75%;  
}
.button.left {
  float: right;
  margin-right: 10px;
}
.button.right {
  margin-left: 10px;
}

.starter {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}

.buttons {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 91.5%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

.overlay.\31 {
  background-color: #008CBA;
}
.overlay.\32 {
  background-color: #f26a23;
}

.button:hover .overlay {
  opacity: 0.9;
}

.text {
  color: #fff;
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.text-name{
  color: #000;
  font-size: 20px;
  margin-top: 10px; 
}

@media only screen and (min-width: 1100px) {
    .starter {
          width: 50%;
    }
}