@font-face {
    font-family: 'AtlasGrotesk-Regular';
    src: url('AtlasGrotesk-Regular.WOFF') format('WOFF');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AtlasGrotesk-Medium';
    src: url('AtlasGrotesk-Medium.WOFF') format('WOFF');
    font-weight: normal;
    font-style: normal;}


.title{font-family: "AtlasGrotesk-Medium"; font-size: 14px;}
            
.normal{font-family: "AtlasGrotesk-Regular"; font-size: 12px;}


@keyframes pulse {
  0%{
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.textbox1{
   	text-shadow: 1px 1px 2px #000000;
	font-family: AtlasGrotesk-Regular;
    	font-size: 14px;
}

.textbox2{
	font-family: AtlasGrotesk-Regular;
  	animation: pulse 2.5s infinite ease-out;
}

.rotate{
	animation: rotation 4s infinite linear;
}


.pulse{
	animation: pulse 2.5s infinite ease-out;
}
            
            