* {
	box-sizing: border-box;
}
html, body {
	min-height: 100%;
	background: #fff;
	color: #000;
  padding: 0;
  margin: 0;
}

main {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fffcfc;
	background-image: url("../assets/grid-noise.png");
}

.icons {
  width: 300px;
  display: flex;
  justify-content: space-between;
}

.icons i {
  font-size: 2rem;
  color: #fff;
  background: #989493;
  border-radius: 50%;
  padding: 15px;
}

.icons i:hover {

	background: #ba6636;

}

.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tooltip .tiptext::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
}
.tooltip:hover .tiptext {
    visibility: visible;
}
.tooltip .tiptext{
    margin-left: -60px;
    bottom: 120%;
    left: 50%;
}
.tooltip .tiptext::after{
    margin-left: -5px;
    top: 100%;
    left: 50%;
    border-color: #2E2E2E transparent transparent transparent;
}
