@import "./resert.css";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;500&display=swap');


body {
  color: black;
  font-family: 'Roboto Slab', serif;
}

.container {
  max-width: 1230px;
  padding: 0 30px;
  margin: 0 auto;
}

.header {
  padding: 10px 0 10px 0;
  background-color: lightseagreen;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
}

.puzzle {
  display: block;
  width: 70px;
  height: 70px;
  margin: 10px;
  position: relative;
  -webkit-border-radius: .4em;
  -moz-border-radius: .4em;
  border-radius: .4em;
}

.puzzle,
.puzzle span {
  background-color: #f9e402;
}

.puzzle .t {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 20px;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
}

.puzzle .r {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 18px;
  left: 54px;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
}

.puzzle .l {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 20px;
  left: -14px;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  background-color: lightseagreen;
}

.nav-list {
  display: flex;
  column-gap: 20px;
  font-weight: 500;
  font-size: 20px;
}

.nav-button {
  display: none;
}

.nav-link {
  color: black;
}

.nav-link.active {
  color: lightslategray;
}

.body {
  padding: 90px 0;
  background-color: azure;
}

.title-1 {
  font-size: 34px;
  font-weight: 500;
}

.title-2 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}

.contacts {
  padding: 90px 0;
  text-align: center;
  background-color: slategray;
}

.contacts-title {
  margin-bottom: 40px;
}

.contacts-content {
  margin: 0 auto 40px;
  max-width: 480px;
  font-size: 18px;
}

.contacts-content p+p {
  margin-top: 1em;
}