body {
  margin: 20px;
  padding: 0;
  font-family: 'Roboto Slab', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  height: 100vh;
  background-color: #cccccc;
  background-image: url('bg.jpg');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.title {
  text-align: center;
  color: beige;
  padding: 20px 10px;
  font-weight: 400;
  text-transform: uppercase;
}
img.header {
  width: 100%;
  margin: 20px 0;
  border-radius: 30px;
  border: 5px solid #fff;
}

.split-container {
  display: flex;
  width: 100%;
  height: 70%;
}

.split-left,
.split-right {
  flex: 1;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px 15px;
  cursor: pointer;
}

p {
  line-height: 30px;
}

button {
  background-color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 16px;
  border: 2px solid #fff;
  transition: .3s;
}
.split-left:hover button,
.split-right:hover button {
  background-color: transparent;
  color: #fff;
  transition: .3s;
}

.split-left img,
.split-right img {
  height: 80px;
  margin-bottom: 10px;
}

.split-left h2,
.split-right h2 {
  text-transform: uppercase;
  margin: 0;
}

.split-left {
  background-color: #2f8749;
  color: #ffffff;
  border: 5px solid #fff;

}
.split-right {
  background-color: #00a3c8;
  color: #ffffff;
  border: 5px solid #fff;

}

.split-left:hover {
  background-color: #3ea85e;
  transform: scale(1.03);
}
.split-right:hover {
  background-color: #24bbdd;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    margin: 5px;
    width: 95%;
    height: 48vh;
  }
}