html {
    background-color: #000;
    font-family: 'IM Fell English';
    color:white;
}

@keyframes colorChange {
    0% {
        color: white;
    }
    50% {
        color: #ffa365;
    }
}

header {
    text-align: center;
}

.logo { 
    animation: colorChange 8s infinite; 
    display: inline;
    font-family: "IM Fell English", serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 140px);
}

#skull {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}