:root {
  overflow: hidden;
}

body {
  font-family: sans-serif;
  background-color: black;
  color: white;
}

.wrapper {
  position: absolute;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(100%);
}
.wrapper .title {
  width: 100%;
  text-align: center;
  font-size: 74pt;
}
.wrapper .icon {
  width: 100%;
  margin: 40px 0px;
  border-radius: 20px;
}

.social {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
}
.social > * {
  position: relative;
  width: 80px;
  height: auto;
  text-align: center;
  opacity: 0.8;
  cursor: pointer;
  margin: 40px 20px;
}
.social > * img {
  width: 100%;
}
.social > *:hover {
  opacity: 1;
}