@font-face {
    font-family: 'Pacifico';
    src: url('Pacifico.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    height: 100%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
}

.logo {
    width: 150px;
    height: 150px;
    animation: spin 12s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ribbon-text {
    margin-top: 1.5rem;
    font-size: 2rem;
    font-family: "Pacifico", cursive;
    background: repeating-linear-gradient(
	-55deg,
	#ff1aaa 0,
	#ff1aaa 10px,
	#aa1999 10px,
	#aa1999 20px
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: stripes 15s linear infinite;
}

@keyframes stripes {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.text-1, .text-2 {
    margin-top: 1rem;
    font-family: sans-serif;
    color: #aa1999;
    text-align: center;
    max-width: 90%;
}

.text-1 {
    font-size: 0.9rem;
    color: #e100ff;
}

.text-2 {
    color: #ff1aaa;
    margin-top: 0.5rem;
    font-size: 0.7rem;
}
