:root {
    --col-main: #FF8000;
    --col-bg: #D6CCC3;
    --col-sec: #CBBEB2;
    --col-alt: #AE9A88;
}

html, body {
    display: flex;
    margin: 0;
    width: 100%;
    height: 100%;
    background: var(--col-bg);
    justify-content: center;
    align-items: center;
}

#logo {
    width: 60%;
    transform: rotateY(0deg);
    animation: rotator 5s ease-in-out infinite;
}

@keyframes rotator {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
}

#sf {
    position: fixed;
    bottom: 0;
    right: 0;
}

p {
    margin: 0;
    font-family: VioletSans, sans-serif;
    font-size: 3em;
    color: var(--col-sec);
}

a {
    text-decoration: none;
    color: var(--col-sec);
}

a:visited {
    color: var(--col-sec);
}

