:root {
  --color-accent: #054d43;
  --color-black: #000000;
  --color-cream: #e6ddc5;
}

html {
  box-sizing: border-box;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;

  color: var(--color-cream);
  background-color: var(--color-accent);
}

.center {
  text-align: center;
}
.logo {
  width: clamp(200px, 80vw, 700px);
}
.logo svg {
  width: 100%;
  height: auto;
}
.logo svg path {fill: var(--color-cream);}
.title {
  display: none;
  font-size: 24px;
  font-weight: 600;
}
.description {
  margin-top: 8px;
  font-size: 16px;
}
.social {}
.social__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  margin-top: min(64px, 10vw);

  list-style-type: none;
}
.social__item {padding: 0 12px;}
.social__link {
  display: flex;

  color: var(--color-cream);
}
@media (hover:hover) {
  .social__link {transition: opacity 130ms ease-in-out;}
  .social__link:hover {opacity: 0.5;}
}
.social__linkIcon {
  width: 24px;
  height: 24px;
}
.social__linkIcon svg path {fill: currentColor;}
.social__linkText {
  margin-left: 8px;
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  margin-top: min(84px, 10vw);

  list-style-type: none;
}
.contacts__item  {padding: 0 12px;}
.contacts__link {
  color: var(--color-cream);
}
@media (hover:hover) {
  .contacts__link {transition: opacity 130ms ease-in-out;}
  .contacts__link:not(.no-hover):hover {opacity: 0.5;}
}
