@font-face {
    font-family: source-pro;
    src: url(SourceCodePro-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #ccc;
}
body {
    font-family: source-pro;
    margin: 0;
    color: #ccc;
    background-color: #000;
}
nav + main {
    padding-top: 100px;
}

nav {
    background-color: #000;
    float: left;
    width: 100vw;
    border-bottom: 5px solid #ccc;
    width: 100vw;
    display: inline-flex;

    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
nav a {
    text-decoration: none;
    color: #ccc;
    font-weight: bold;
}
nav a:hover {
    color: #999;
}

footer {
    width: 100vw;
    margin-top: 20px;
    align-items: center;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #000;
    border-top: 2px solid #ccc;
}

.navr {
    margin-left: auto;
    margin-right: 20px;
}

.flr {
    float: right;
}
.center {
    margin: auto !important;
    display: table !important;
}
.avatar img {
    width: 70px;
    float: left;
}
#repos {
    position: relative;
}
.repo a {
    text-decoration: none;
    color: #ccc;
}

.repo {
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 400px;
    height: 95px;
    padding: 10px;
    margin: 5px;
}

.repo:hover,
.repo:active {
    border: 2px solid #999;
}
.repo p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #999;
}

#repos div[repo] {
    float: left;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.entry {
    background-color: #000;
    float: left;
    width: 100vw;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #ccc;
}

.entry .head {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    font-weight: bold;
    z-index: 100;
    text-align: center;
    padding: 10px;
}

.tech-tag {
    position: absolute;
    color: #999;
    font-weight: 600;
    user-select: none;
    font-size: 16px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 1s ease;
    opacity: 1;
}

.repo-category {
    float: left;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 5px;
    width: 100%;
}

.repo-group {
    display: grid;
}

.vex {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 1444px) {
    .repo-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    #repos {
        width: calc(432px * 3);
    }
    .entry .head {
        font-size: 25px;
    }
}

@media (min-width: 953px) and (max-width: 1443px) {
    .repo-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #repos {
        width: calc(432px * 2);
    }
    .entry .head {
        font-size: 20px;
    }
}

@media (max-width: 952px) {
    .repo-group {
        display: grid;
        grid-template-columns: 1fr;
    }
    #repos {
        width: 430px;
    }
    .entry .head {
        font-size: 18px;
        width: 90vw;
    }
}

@media (max-width: 450px) {
    .repo {
        width: 90vw;
    }
    #repos {
        width: 100vw;
    }
    .entry .head {
        font-size: 18px;
        width: 90vw;
    }
}
