* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(151deg, #95d5b2 50%, #52b788 50%);
}

.browsers {
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.browsers h2 {
  margin-bottom: 40px;
  color: #52b788;
  font-size: 46px;
  border-bottom: 2px solid #95d5b2;
}

.browsers .icons {
  margin-left: 15px;
}

.icons img {
  opacity: 0.3;
  margin: 0 7px;
  transition: opacity 0.4s ease;
}

.icons img:last-child {
  margin-right: 0px;
}