/* Reusable utility styles */
.rotate {
    align-self: center;
    animation: rotation 4s infinite linear;
    text-align: center;
}

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

    to {
        transform: rotate(359deg);
    }
}

.logoText {
    position: relative;
    margin-left: 50%;
    margin-top: -18px;
    background: white;
    font-weight: bold;
    color: #1b9c9c;
    font-family: monospace;
}
