/* Diseño general */
body {
    background-color: hsl(226, 23%, 11%);
    color:aliceblue;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.75rem;
    max-width: 1150px;
    padding: 10px;
}
p {
    line-height: 1.263em;
}

/* Barra de desplazamiento */
::-webkit-scrollbar {
    background: #0e090d;
    width: 11px;
    height: 9px;
}
::-webkit-scrollbar-thumb {
    background: #b3b3c0;
    border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
    background: #dbc4f7;
}

/* Títulos */
h1 {
    font-size: 1.8em;
}
h2 {
    font-size: 1.45em;
}
h3 {
    font-size: 1.15em;
}
h4 {
    font-size: 0.985em;
}

/* Enlaces */
a:link {
    color: rgb(166, 132, 221);
    text-decoration: none;
}
a:visited {
    color: rgb(205, 181, 214);
}

/* Navegación */
nav.nav_param {
    font-size: medium;
}
nav.page_nav {
    font-size: medium;
}
/* Imágenes */
div.center img {
    width: 100%;
    max-width: 630px;
    height: auto;
}
div.center img:hover {
    transform: scale(1.8);
    transition: 0.6s ease;
}
img.screenshot {
    width: 100%;
    max-width: 530px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2pt;
    margin-top: 6px;
}

/* Clases */
.code {
    padding: 0.5em;
    color:#adbac7;
    background: #1d1f21;
    border-radius: 5px;
    width: 83%;
    font-family: monospace;
    font-size: 1.2em;
    display: block;
    overflow-x: auto;
}
.profile {
    border: 2px solid hsl(224, 27%, 24%);
    border-collapse: collapse;
    width: 20%;
}
.param {
    padding-left: 2pt;
    padding-right: 2pt;
    padding-top: 0.2pt;
    padding-bottom: 0.2pt;
    background: rgb(82, 82, 82);
    color: white;
    border-radius: 4px;
    font-style: normal;
}

/* Otros */
code {
    font-family: monospace;
    font-size: 1.2em;
    border-radius: 5px;
    width: 83%;
}
div.center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85em;
    position: relative;
    width: 100%;
    max-width: 630px;
    height: auto;
    overflow: hidden;
}