:root {
    --base03: #002b36;
    --base02: #073642;
    --base01: #586e75;
    --base00: #657b83;
    --base0: #839496;
    --base1: #93a1a1;
    --base2: #eee8d5;
    --base3: #fdf6e3;
    --yellow: #b58900;
    --orange: #cb4b16;
    --red: #dc322f;
    --magenta: #d33682;
    --violet: #6c71c4;
    --blue: #268bd2;
    --cyan: #2aa198;
    --green: #859900;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 1.2em;
    /* font-family: Hack, sans; */
    font-family: Arial;
    background-color: var(--base03);
    color: var(--base0);
}

body {
    min-height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
}

main {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#down {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto 15px auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid var(--base0);
}

#jslogo {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

#jslogo-name-j {
    fill: var(--base0);
}

#jslogo-name-s {
    fill: var(--base0);
}

#jslogo-j {
    fill: var(--violet);
    transition: fill 2s;
}

#jslogo-s {
    fill: var(--cyan);
    transition: fill 2s;
}

#js_j {
    color: var(--violet);
    transition: color 2s;
}

#js_s {
    color: var(--cyan);
    transition: color 2s;
}

footer {
    grid-row-start: 2;
    grid-row-end: 3;
    background-color: var(--base02);
    width: 100%;
    padding: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mail-icon {
    width: 3rem;
    margin-right: 25px;
    fill: var(--base0);
}

footer h1 {
    font-size: 1em;
    margin-left: 25px;
}

