* {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'Space Mono', monospace;
}

.center {
    text-align: center;
    height: 50vh;
}

h1 {
    margin-top: 2.5em;
    font-size: 4rem;
}

h2 {
    margin-top: 1em;
}

.lilac {
    color: #bd86ff;
}

.link:hover {
    color: #bd86ff;
    transition: 0.15s ease-in-out;
}

.white {
    color: white;
}

header {
    height: 20vh;
}

.buttontop {
    position: relative;
    top: 3em;
    left: 8em;
    font-size: 2rem;
}

.link {
    text-decoration: none;
}

.icons {
    text-align: center;
    margin-top: 2em;
}

@media (max-width: 1500px) {

    .buttontop {
        top: 55px;
        left: 55px;
    }

    @media (max-width: 600px) {

        .buttontop {
            font-size: 1.3rem;
        }

        h1 {
            font-size: 2.6rem;
            margin: 0% 35px;
        }

        h2 {
            margin: 0% 35px;
        }

        .center {
            margin-top: 100px;
            height: 45vh;
        }
    }
}