@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	color: #2c2c2c;
}

html,
body {
	margin: 0;
	padding: 0;
}

strong,
.fw-700 {
	font-weight: 700;
}

/* .fab, .fas{
   color:rgba(0, 0, 0, 0.8);
} */

.icon-link{
    text-decoration: none;
    color:inherit !important;
}
h1 {
	font-family: "Playfair Display", serif;
	font-size: 9rem;
	font-weight: 700;
}
h2 {
	font-family: "Playfair Display", serif;
	font-size: 3rem;
	font-weight: 700;
	font-style: italic;
}

.lead {
	font-size: 1.5rem;
	font-weight: 400;
}

.wrapper {
    display: flex;
    list-style: none; 
    justify-content: right;
  }
  
  .wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    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 .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .github:hover,
  .wrapper .github:hover .tooltip,
  .wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff !important;
  }
  
  .wrapper .paper:hover,
  .wrapper .paper:hover .tooltip,
  .wrapper .paper:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff !important;
  }

  .wrapper .other:hover,
  .wrapper .other:hover .tooltip,
  .wrapper .other:hover .tooltip::before {
    background: #4B89DC;
    color: #ffffff !important;
  }
  
  
