*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none; /* removes underline */
  color: inherit;
  transition: color 0.3s ease;
}
body{
  background-color: white;
}


.for-mobile{
  display: none;
}

.for-desktop{
  display: block;
}
