* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #222;
}

a {
  text-decoration: none;
  color: #333;
}

.wrapper {
  list-style: none;
}

.wrapper .icon {
  /*   position: relative; */
  background: #fff;
  border-radius: 50%;
  padding: 0px;
  margin: 5px;
  width: 40px;
  height: 40px;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #cd201f;
  color: #ffffff;
}

.box-satu {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /*   cursor: pointer; */
}

.avatar {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  overflow: hidden;
  background-image: url("https://source.unsplash.com/Z9ZKGIs8voI");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  background-color: red;
  transition: 0.5s ease-in-out;
}

.avatar:hover {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border-radius: 0;
  background-image: url("https://source.unsplash.com/sztWS6R3UlA");
  padding: 0;
  transition: 0.5s ease-in-out;
}

.avatar-dua {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  overflow: hidden;
  background-image: url("https://source.unsplash.com/3xTP_gWUlrg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.avatar-dua:hover {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border-radius: 0;
  background-image: url("https://source.unsplash.com/fAkHKZf3NPk");
  padding: 0;
  transition: 0.5s ease-in-out;
}

.avatar-tiga {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  overflow: hidden;
  background-image: url("https://source.unsplash.com/QXevDflbl8A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  background-color: red;
  transition: 0.5s ease-in-out;
}

.avatar-tiga:hover {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border-radius: 0;
  background-image: url("https://source.unsplash.com/_nbv8YREOWQ");
  padding: 0;
  transition: 0.5s ease-in-out;
}

.avatar > .teks {
  display: none;
  color: #222;
  width: 90%;
  height: 90%;
  border-radius: 5px;
  background-color: rgba(71, 181, 255, 0.6);
  transition: 0.5s 0.5s ease-in-out;
}

.avatar:hover > .teks {
  display: block;
  padding: 0px 15px 0px 5px;
  font-size: 0.7em;
  font-weight: bold;
  transition: 0.5s 0.5s ease-in-out;
}

.avatar-dua > .teks {
  display: none;
  color: #fff;
  width: 90%;
  height: 90%;
  border-radius: 5px;
  background-color: rgba(224, 20, 76, 0.7);
  transition: 0.5s 0.5s ease-in-out;
}

.avatar-dua:hover > .teks {
  display: block;
  padding: 0px 15px 0px 5px;
  font-size: 0.7em;
  font-weight: bold;
  transition: 0.5s 0.5s ease-in-out;
}

.avatar-tiga > .teks {
  display: none;
  color: #fff;
  width: 90%;
  height: 90%;
  border-radius: 5px;
  background-color: rgba(254, 177, 57, 0.5);
  transition: 0.5s 0.5s ease-in-out;
}

.avatar-tiga:hover > .teks {
  display: block;
  padding: 0px 15px 0px 5px;
  font-size: 0.7em;
  font-weight: bold;
  transition: 0.5s 0.5s ease-in-out;
}