@font-face {
    font-family: Round8;
    src: url(font/ROUND8-SEVEN.otf);
}

@font-face {
    font-family: Skeletor;
    src: url(font/Version_0.3_20_skeletor_avec.ttf);
}

@font-face {
    font-family: Manifont;
    src: url(font/ManifontGroteskBookDot.ttf);
}

body{
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: whitesmoke;
    text-align: center;
}

#tout {
    display: flex;
    gap: 20px;
}

.fx1{
    font-family: 'Manifont', sans-serif;
    color: blueviolet;
    font-size: 5rem;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 20px 0 0 blueviolet; }
    to { text-shadow: 0 0 10px rgb(0, 0, 0); }
}


.fx2{
    background: -webkit-linear-gradient(rgb(0, 170, 255), rgb(200, 0, 255), rgb(255, 0, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size:smaller;
    font-family: 'Round8';
    animation: scale 2s infinite alternate;
    margin-top: 30px;
    line-height: 1;
}

@keyframes scale {
    from { font-size:smaller; }
    to { font-size: 15rem; }
}

.fx3{
    color: rgb(226, 104, 43);
    font-size:8em;
    font-family: 'Skeletor';
    animation: color 2s infinite linear;
    margin-top: 15%;
    margin-left: 250px;
    margin-right: 250px;
}

@keyframes color {
    from { filter: hue-rotate(0deg) blur(10px); transform: rotate(0deg); }
    to   { filter: hue-rotate(360deg) blur(10px); transform: rotate(360deg); }
}