@font-face {
	font-family: "Genty";
	src: url(genty-regular.ttf);
}
@font-face {
	font-family: "TXT";
	src: url(txtgroovysmooth.ttf);
}
body{
    overflow-x: hidden;
	background-color: #f9cc27;
	font-family: 'Poppins', sans-serif;
}
h1 {
	font-family: 'TXT';
}
html {
	scroll-behavior: smooth;
  }

.txttext {
	font-family: 'TXT';
}


.spin {
    -webkit-animation:spin 15s linear infinite;
    -moz-animation:spin 15s linear infinite;
    animation:spin 15s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}


.box1 {
	animation: 2s show ease;
  }
  
  @keyframes show {
	from { opacity: 0; }
	to { opacity: 1; }
  }