@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
body{
    background-color:black;
    color:white;
    padding:0px;
    font-family:Exo,sans-serif;
    box-sizing:border-box;
}


@keyframes _rotation{
0%{
    transform: rotate(0deg);
}
50%{
    transform: rotate(180deg);
}
100%{
    transform:rotate(0deg);
}


}
.bold-text{
    font-family: Exo, sans-serif;    
}

.icon{
    width:100px;
}
.spinningObj{
    
    animation-name: _rotation;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    user-select: none;
}

.yellow-txt{
    color:yellow;
}


p{
  font-family:Exo,sans-serif; 
}

