
body {
  font-family: Roboto, sans-serif;
}

/* .container {
  padding: 0 40px;
  margin-left: 80px;
} */

  /* Свойства ссылок */
a {
  display: block;
  text-decoration:none;
  position: relative;
}

span {
  letter-spacing: 8px;
}

  /* Что делать при наведении на ссылку */
a:hover {
  color:rgb(104, 104, 105);
}

  /* Этим свойством добавляем подчеркивание через создание псевдокласса */

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
  margin: 1.25em 0;
}

  /* Свойства фотографии*/
.photo {
  border-radius: 100px;
  /* Радиус скругления */
  border: 3px solid transparent;
  /* Параметры рамки */
  box-shadow: 0 4px 15px 0px rgba(48, 82, 131, 0.52);
  object-fit: cover;
}

  /* Эффект наведения на картинку */
.photo:hover {
  border: 3px solid transparent;
  border-radius: 100px;
  background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%) border-box;
}
