body {
    background-color: #ffd1dc;

    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    transition: transform .2s;

    font-family: verdana;
    font-size: 100px;
    font-weight: 700;
    color: #f5f5f5;
    text-align: center;
    text-shadow: 1px 1px 1px #919191,
    1px 2px 1px #919191,
    1px 3px 1px #919191,
    1px 4px 1px #919191,
    1px 5px 1px #919191,
    1px 6px 1px #919191,
    1px 7px 1px #919191,
    1px 8px 1px #919191,
    1px 9px 1px #919191,
    1px 10px 1px #919191,
    1px 18px 6px rgba(16, 16, 16, 0.4),
    1px 22px 10px rgba(16, 16, 16, 0.2),
    1px 25px 35px rgba(16, 16, 16, 0.2),
    1px 30px 60px rgba(16, 16, 16, 0.4);
}

/* Promo appear on hover */
.promo {
    position: fixed;
    bottom: 0;
    padding: 10px;
    display: flex;
}

.promo p {
    color: white;
    font-family: Comfortaa;
    margin-left: 10px;
}

.promo b {
    color: white;
    font-family: Comfortaa;
    font-weight: bolder;
    margin-left: 5px;
    margin-right: 10px;
}

.rainbow-text {
    background-image: repeating-linear-gradient(45deg, orange, red, violet);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 8s ease infinite;
}

@keyframes rainbow {
    0%{background-position:0% 50%}
    50%{background-position:100% 25%}
    100%{background-position:0% 50%}
}
