body {
    margin: 0;
    font-size: 100%;
    font-family: 'Fira Code', monospace;
    font-weight: 400;
    line-height: 1.4;
    color: #fff9ff;
    background: #000;
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
}


/*******************************
********************************
********* TEXT & LINKS *********
********************************
********************************/


h1 {
    margin: 20px 10px 0;
    font-size: 3em;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

h1::after {
    content: '';
    height: 50px;
    width: 100%;
    position: absolute;
    background-color: #28754c;
    margin-top: -50px;
    left: 0;
    top: 100%;
    z-index: -1;
}

h1 a:hover,
h1 a:focus {
    background-color: #28754c;
}


p {
    margin: 15px;
    font-size: 1em;
}

a {
    color: #fff9ff;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

a::after {
    content: '';
    height: 20px;
    width: 100%;
    position: absolute;
    background-color: #67074e;
    margin-top: -20px;
    left: 0;
    top: 100%;
    z-index: -1;
}

.hire-me a {
    font-size: 2em;
    margin: 15px;
    margin-top: 20px;
}

.hire-me a::after {
    background-color: #102D59;
    height: 25px;
    margin-top: -25px;
}

a:hover,
a:focus {
    background-color: #67074e;
}

.hire-me a:hover,
.hire-me a:focus { 
    background-color: #102D59;
}

/******************************
*******************************
********** STRUCTURE **********
*******************************
*******************************/


.statement,
.bio {
    padding: 20px;
    margin: 10px;
}


@media screen and (min-width: 600px) {

    h1 {
        font-size: 4em;
    }

    p {
        font-size: 1.5em;
    }
}

@media screen and (min-width: 1000px) {
    .main-flex {
        width: 970px;
        margin: 0 auto;
    }
}
