* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 1em;

    padding: 0;

    background-color: rgb(35, 35, 35);
    color: rgb(35, 35, 35);
    font-family: 'Menlo', monospace;
    font-weight: 900;
    font-size: 72px;
}

@media (max-width: 320px) {
    body {
        font-size: 24px;
    }
}

@media (min-width: 321px) {
    body {
        font-size: 32px;
    }
}

@media (min-width: 425px) {
    body {
        font-size: 42px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 72px;
    }
}

h1,
a {
    display: inline-block;
    padding: 0.2em 0.4em;

    background-color: #00adff;
    font-size: 2em;
}

h1 {
    margin-bottom: 0.5em;
}

a {
    margin-top: 0.5em;
    font-size: 1em;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(.15,.99,.66,.99);
}

a:hover {
    transform: scale(1.05) translateX(3%);
}

a:active {
    transform: scale(1);
}

a:hover:after {
    content: '_';
}

a:visited {
    color: inherit;
}

#twitter:before,
#github:before,
#instagram:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: sub;
    background-image: url('icons/twitter.svg');
    background-size: contain;
    background-position: 50%;
    margin-right: 0.3em;
}

#github:before {
    background-image: url('icons/github.svg');
}

#instagram:before {
    background-image: url('icons/instagram.svg');
}
