.logo-link {
    text-decoration: none;
    /* quitar subrayado del enlace */
}

.logo-link:hover .logo-letter {
    transform: rotate(360deg);
    /* animación al pasar el ratón por encima */
}

.logo {
    display: flex;
    align-items: center;
}

.logo-box {
    background-color: #e74c3c;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.logo-letter {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

