body, html {
    background-color: darkslategray;
    height: 100%;
    margin: 0;
}

.container {
    height: 100%;
}

.ai4ki {
    text-align: center;
    position: relative;
    top: 25%;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 144px;
    margin: 0;
    background: linear-gradient(90deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: rainbow 20s ease infinite;
    -moz-animation: rainbow 20s ease infinite;
    -o-animation: rainbow 20s ease infinite;
    animation: rainbow 20s ease infinite;
    background-size: 300% 100%;
}

@-webkit-keyframes rainbow {
    0% {background-position: 0% 82%;}
    50% {background-position: 100% 19%;}
    100% {background-position: 0% 82%;}
}

@-o-keyframes rainbow {
    0% {background-position: 0% 82%;}
    50% {background-position: 100% 19%;}
    100% {background-position: 0% 82%;}
}

@-moz-keyframes rainbow {
    0% {background-position: 0% 82%;}
    50% {background-position: 100% 19%;}
    100% {background-position: 0% 82%;}
}

@keyframes rainbow {
    0% {background-position: 0% 82%;}
    50% {background-position: 100% 19%;}
    100% {background-position: 0% 82%;}
}

.footer {
    text-align: center;
    position: relative;
    bottom: 7%;
}

.footer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: lightgray;
}

a:link {
    color: inherit;
    text-decoration: underline;
}

a:visited {
    color: gray;
}

a:hover {
    color: #7030a0;
}

#desktop {
    display: block;
}

#mobile {
    display: none;
}

h2 {
    font-family: 'Source Code Pro', monospace;
    /*font-family: 'Roboto Mono', monospace;
    font-family: 'Ubuntu Mono', monospace;*/
    font-size: 20px;
    font-weight: bold;
    color: lightgray;
    margin: 0;
}

h3 {
    font-family: 'Source Code Pro', monospace;
    /*font-family: 'Roboto Mono', monospace;
    font-family: 'Ubuntu Mono', monospace;*/
    font-size: 18px;
    font-weight: normal;
    color: darkseagreen;
    margin-top: 20px;
}

@media screen and (max-width: 700px) {

    #desktop {
        display: none;
    }

    #mobile {
        display: block;
    }

    h1 {
        font-size: 120px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 14px;
    }

}


