/* Twitter icon styling */
.x-icon-link{
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background-color: red;
}
.x-icon{
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}


.x-icon:hover {
  background-color: #ff6e40;

  cursor: pointer;
}

