/*---transform animations---*/

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.9) rotate(-5deg);  }
  to { transform: scale(1.1) rotate(5deg); }
}

.spin {
  animation: spin 15s infinite linear;
}
    @keyframes spin { 
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
        }



/*---header for fake tab---*/

.trapezoid {
	border-bottom: 50px solid white;
	border-right: 25px solid transparent;
	width: 300px;
  position:absolute;
}







