@font-face {
    font-family: "SF Mono";
    src: url("font.woff") format("woff");
}

body {
    background-color: #202020;
    color: #ffffff;
    font-family: "SF Mono", monospace, sans-serif;
    text-align: center;
}

.title {
    font-size: 3em;
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s linear infinite;
}

.subheading {
    font-size: 2em;
    margin-top: 15px;
}

.logo1 {
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
}

.logo2 {
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
}

a {
    color: #00ff85;
}

@keyframes moveGradient {
    to {
        background-position: 200% center;
    }
}