.servicescontainer {
  display: grid;
  row-gap: 2.5px;
}

.collapsible {
  width: 100%;
  padding: 8px 8px 10px 8px;
  text-align: center;
  font-size: 1.2em;
  cursor: pointer;
}

button {
  font-weight: bold;
}

.button1 {
  border-top: 5px solid white;
  background-color: #6991ac;
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.button2 {
  background-color: #d6d31d;
  color: rgb(100, 93, 93);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button3 {
  background-color: #aadcd2;
  color: rgb(172, 55, 55);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button4 {
  background-color: #8be9ad;
  color: rgb(100, 93, 93);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button5 {
  background-color: #a2b2c1;
  color: rgb(172, 55, 55);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button6 {
  background-color: #beb9ad;
  color: rgb(100, 93, 93);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button7 {
  background-color: #f1aa90;
  color: rgb(172, 55, 55);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button8 {
  background-color: #c3d7df;
  color: rgb(100, 93, 93);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button9 {
  background-color: #aadcd2;
  color: rgb(150, 21, 21);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.button10 {
  border-bottom: 2.5px solid white;
  background-color: #6991ac;
  color: rgb(165, 146, 146);
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.active,
.collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  font-size: 25px;
  color: rgb(206, 177, 11);
  font-weight: bold;
  margin-left: 10px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.active:after {
  content: '\2212';
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
