body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #545658;
  font-family: sans-serif;
}
.maincontent {
  max-width: 720px;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  flex: 0 1 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logo h1 {
  font-size: 60px;
  text-align: center;
  color: #71cbf4;
  font-family: sans-serif;
}

.logo img {
  width: 100%;
  max-width: 520px;
}

.title {
  display: flex;
  flex: 0 1 100%;
  width: 100%;
  justify-content: center;
  color: #fff;
  padding-bottom: 1rem;
}

.title p {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-family: sans-serif;
}

.kontakt {
  flex: 0 1 100%;
  border-top: 2px solid #fff;
  padding-top: 3rem;
}

.kontakt ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.kontakt ul li {
  position: relative;
  padding-left: 35px;
  font-size: 20px;
  line-height: 28px;
}

.kontakt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}

.kontakt ul li.kontakt_phone::before {
    background-image: url("../icon_phone.png");
}

.kontakt ul li.kontakt_email::before {
    background-image: url("../icon_email.png");
}

.kontakt ul li.kontakt_location::before {
    background-image: url("../icon_mapmarker.png");
}


@media only screen and (max-width: 500px) {
  .kontakt ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  .kontakt ul li {
    width: fit-content;
    text-align: center;
    font-size: 14px;
  }
}
