@font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WR32lw.woff2) format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Noto Sans', sans-serif;
    color: white;
    background-color: #000;
    background-attachment: fixed;
    background-image: url("https://www.transparenttextures.com/patterns/subtle-dots.png");
    min-width: 300px;
}

h1 {
    font-weight: bold;
    font-size: 50px;
}

.version {
    position: absolute;
    color: rgba(100, 100, 100, 0.6);
    font-weight: bold;
    left: 20px;
    top: 20px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.text-gray {
    color: #888;
}

.text-white {
    color: white;
}

.text-gold {
    color: #c0a062;
}

.text-bold {
    font-weight: bold;
}

.text-align-left {
    text-align: left;
}

.w-100 {
    width: 100%;
}

.py-3 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.px-3 {
    padding-left: 48px;
    padding-right: 48px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.rounded {
    border-radius: 5px;
}

.footer, .header, main {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.header-background {
    background-attachment: fixed;
    background-clip: border-box;
    background: linear-gradient(45deg, rgba(120, 100, 60, 0.9), rgba(120, 100, 60, 0.9)), url("../images/logo.png");
    background-origin: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 20px 60px rgba(192, 160, 80, 0.3);
}

.header-title {
    padding: 20px 50px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0px 10px 65px rgba(0, 0, 0, 0.9);
}

.main-content {
    text-align: left;
    padding: 48px 0;
    max-width: 1200px;
    margin: auto;
}

.section-box {
    background-color: #666;
    margin-bottom: 64px;
    padding: 20px;
    border-radius: 5px;
}

.project {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
}

.project-body {
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    padding: 20px;
    background-color: #444;
}

.project-logo {
    background-color: #222;
    border: 1px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-logo img {
    display: block;
    width: 230px;
    height: 230px;
}

.project-description {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #555;
}

.project-console {
    font-family: 'Inconsolata', monospace;
    padding: 10px 20px;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 1px, transparent 1px, transparent 2px);
    color: #666;
    text-shadow: 0 0 2px #333;
}

.terminal {
    background-color: #222;
}

.footer {
    border-top: 1px solid #555;
    background-color: #111;
    padding: 48px 0;
}

.contact-item {
    max-width: 600px;
    margin: auto;
}

.contact-type {
    min-width: 80px;
}

.contact-card {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
}

.media-link {
    padding: 5px 10px;
    margin: 5px 10px;
    border-radius: 5px;
    background: #333;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid #555;
}

.media-link:hover {
    background: #666;
    color: #fc8;
    border: 1px solid #fc8;
    box-shadow: 0px 0px 75px rgba(255, 255, 255, 0.4);
}

.fixed-size-1 {
    width: 350px;
}

@media only screen and (max-width: 1280px) {
    .project-logo {
        display: none;
    }

    .header-title {
        padding: 20px 40px;
        margin: 20px 40px;
    }

    main {
        margin-left: 20px;
        margin-right: 20px;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .small-logo {
        display: block;
        margin-right: 20px;
        height: 100px;
    }

    .small-logo img {
        width: 100px;
        height: 100px;
    }
}

@media only screen and (max-width: 640px) {
    h1 {
        font-size: 30px;
    }

    .media-links {
        display: none;
    }

    .media-links.mobile {
        display: block;
    }

    .header-background {
        background: none;
    }

    .fixed-size-1 {
        display: none;
    }

    .cmd-slogan {
        max-width: none;
    }

    .header-title, main {
        padding: 0px 5px;
        margin: 0px 0px;
    }

    .small-logo {
        width: 80px;
        height: 80px;
    }

    .small-logo img {
        width: 80px;
        height: 80px;
    }
}