:root {
  --color-black: #353535;
  --color-gray: #d1d1d1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-weight: 400;
  font-family: arial;
  color: var(--color-black);
  background: var(--color-gray);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
  max-width: 1250px;
  margin: auto;
  padding: 100px 20px;
}

article {
  text-align: center;
}

h1 {
  display: grid;
  max-width: 465px;
  margin: 0 auto;
  text-transform: uppercase;
  line-height: 1;
}

h1 strong {
  font-size: 60px;
}

h1 span:first-child {
  font-size: 30px;
  text-align: left;
}

h1 span:last-child {
  font-size: 30px;
  text-align: right;
}

ul {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  justify-content: center;
  gap: 20px;
  margin-top: 200px;
  list-style: none;
}

a {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: inherit;
  border: 3px solid var(--color-black);
  transition: .3s;
}

a:hover {
  opacity: .5;
}

svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1050px) {
  img {
    width: 100%;
    max-width: 500px;
  }

  section {
    grid-template-columns: 1fr;
  }

  ul {
    margin: 100px 0;
  }
}

@media (max-width: 550px) {
  h1 {
    max-width: 310px;
  }

  h1 strong {
    font-size: 40px;
  }

  h1 span:first-child {
    font-size: 20px;
  }

  h1 span:last-child {
    font-size: 20px;
  }
}