html, body {
    margin: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #2c2c2c;
    font-family: 'Roboto', sans-serif;
    /*overflow: hidden;*/
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 30px;
}

a {
    text-decoration: none;
    color: #66d448;
    transition: 0.1s linear;
}

a:hover {
    color: #c1ffb0;
}

.rootDiv {
    text-align: center;
}

.header {
    padding-top: 1px;
    padding-bottom: 30px;
    color: white;
    background-color: #303030;
    text-align: center;
}

/* thanks shuga */
@media (min-width: 886px) {
    .content {
        color: white;
        text-align: left;
        padding: 30px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 886px) {
    .content {
        color: white;
        text-align: left;
        padding: 30px;
    }
}

.footer {
    color: white;
    padding: 30px;
    background-color: #262626;
}

.me {
    float: right;
    width: 150px;
}