.logoview{
overflow: hidden;
background-color: rgb(112, 111, 111);
height: 180px;
text-align: center;
}


.logoh {
    font-size: 70px;
    color: aliceblue;
    text-shadow: 2px 2px 5px rgb(218, 216, 216);
    animation: colorChange 5s linear infinite;
    margin-left: 25px; /* เพิ่มช่องว่างทางซ้าย 5px */

}

@keyframes colorChange {
    0% {
        color: yellow;
        text-shadow: 2px 2px 5px rgb(218, 216, 216);
    }
    30% {
        color: orange;
        text-shadow: 2px 2px 5px rgb(218, 216, 216);
    }
    70% {
        color: rgb(155, 236, 144);
        text-shadow: 2px 2px 5px rgb(218, 216, 216);
    }
    100% {
        color:yellow;
        text-shadow: 2px 2px 5px rgb(218, 216, 216);
    }
}

