@font-face {
    font-family: 'Poppins';
    src: url('assets/font/Poppins-Regular.ttf');
}

body,
input,
select,
button {
    font-family: 'Poppins', sans-serif;
    color: rgb(112, 112, 112);
    font-size: 14px;
    letter-spacing: 0.1pt;
}

strong {
    color: rgb(122, 122, 122);
    margin-right: 4px
}

body {
    background-color: rgb(30, 30, 30);
    margin: 0px;
    line-height: 1.5rem;
    text-align: center;
    cursor: default;
    font-size: 16px;
}

input,
select {
    box-sizing: border-box;
    height: 32px;
    margin: 0px;
    padding: 0px;
}

input {
    padding-left: 2px;
    padding-right: 2px;
}

button {
    min-width: 30px;
    border-radius: 5px;
    border: 1px solid #767676;
    padding: 2px 5px;
    margin-right: 5px;
    cursor: pointer;
}

button:disabled {
    opacity: 0.5;
    cursor: default;
}

a {
    text-decoration: none;
    color: rgb(112, 112, 182);
}

a:visited {
    color: rgb(112, 112, 182);
}

a:hover {
    color: rgb(132, 132, 192);
}

#content {
    margin-top: 60px;
    width: 640px;
    text-align: justify;
    background: rgba(34, 34, 34);
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #101010;
}

#innerContent {
    padding: 2px 30px 10px 30px;
}

@media (max-width: 640px) {
    #content {
        margin-top: 0px;
        width: 100%;
        box-shadow: none;
        text-align: left;
    }
}

h1 {
    max-width: 100%;
}

h2 {
    border-bottom: 2px solid rgb(50, 50, 50);
    font-size: 18px;
    margin-bottom: -14px;
    line-height: 30px;
    letter-spacing: 1px;
}

ul {
    padding-left: 12px;
    list-style-type: "- ";
}

li::marker {
    color: rgb(95, 95, 95);
}

.subtle {
    opacity: 0.65;
}

footer {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.85em;
    opacity: 0.7;
    text-align: center;
}

#logo {
    margin-top: 25px;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, .7));
    margin-right: 25px;
    max-width: 100%;
}

#githublink {
    display: inline-block;
    margin-top: 14px;
}

#githubicon {
    height: 20px;
    margin-left: 2px;
    margin-bottom: -7px;
    margin-right: 7px;
}

#githubtext {
    vertical-align: middle;
}