@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.lato-regular,body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body,html{
    background-color: rgb(19, 19, 19);
    color: rgb(236, 236, 236);
    margin: 0;
    padding: 0;
}
span.small{
    font-size: 0px;
    background-color: violet;
}
span.small::before{
    content: "?";
    font-size: 10px;
}
span.small:hover::before {
    content: "";
}
span.small:hover{
    font-size: 10px;
    background-color: rgb(78, 51, 78);
    padding: 3px;
    border-radius: 3px;
    border: 2px rgb(112, 72, 112) solid;
}