/* main.css */
* {
    box-sizing: border-box;
}

body {
    height: 100%;
    /* max-width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* overflow-x: clip; */
    font-family: Roboto;
    font-size: 16px;
    color: #ede;
    font-weight: 300;
}

body:before {
    z-index: -1;
    content: "";
    background: linear-gradient(-180deg, #000, #112);
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;

}

main {
    /* max-width: 1280px; */
    min-width: 400px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

a,
a:visited {
    color: #5a88dd;
    transition: all 0.3s ease-in;
}
a:hover {
    color: cornsilk;
}
p.plink {
    margin: 0px;
    padding: 0px;
    margin-bottom: 0.5rem;
}
p a.damped,
p a.damped:visited {
    color: #505050;
}

img.hdr {
    max-width: 100%;
    min-width: 400px;
}

div.container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

div.card {
    /* border: 1px solid #333; */
    height: 400px;
    width: 300px;
    object-fit: cover;
}
div.wide {
    width: 900px;
    border: 1px solid #303030;
    padding: 2rem;
    border-radius: 4px;
}

@media (max-width: 900px) {
    div.card {
        height: unset;
    }
    div.wide {
        width: 400px;
    }
}

.btm {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: normal;
}

img.card {
    max-width: 300px;
    max-height: 400px;
}
 a {
    text-decoration: none;
 }

a.btn {
    display: block;
    width: 100%;
    padding: 0.5rem 2rem;
    background: #5a88dd;
    color: #111;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 5px;
    transition: all 0.3s ease-in;
    margin-top: 1rem;
    <i class="fa-solid fa-lock" style="color: #;"></i>
}
a.btn:hover {
    /* background: linear-gradient(45deg, #ede, cornsilk); */
    background-color: cornsilk;
    color: #111;
    cursor: pointer;
}

h1 {
    margin-bottom: 0px;
}

h2 {
    color: #fff;
    font-size: 2.5rem;
    padding: 0px;
    margin: 0px;
    font-weight: 900;
}

h3 {
    text-decoration: line-through;
    padding: 0px;
    margin: 0px;
    color: #808080;
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    margin-top: 0px;
    color: #808080;
}

span {
    font-weight: 100;
    color: #808080;
}

p {
    font-size: 1rem;
    font-weight: 300;
}

small {
    font-weight: 200;
    font-size: 0.75rem;
}

footer {
    color: #000;
    position: relative;
    /* width: 100vw; */
    width: 100%;
    padding-top: 3rem;
    margin-top: 3rem;
}
footer:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    height: 100%;
    /* width: 100vw; */
    width: 100%;
    background: #808080;
    opacity: 0.3;
    z-index: -1;
}
footer p {
    padding: 0rem 2rem;
    margin: 0px;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.75rem;
}
footer p:first-of-type {
    padding-top: 3rem;
}
footer p.drop {
    margin-top: 1.5rem;
}
footer strong {
    font-weight: 900;
    font-size: 0.9rem;
    padding-right: 0.1rem;
}
code {
    padding: 3px 0.5rem;
    background: #ede;
    color: #111;
    border: 2px solid #808080;
    border-radius: 2px;
}
b.save {
    font-weight: 900;
    font-size: 0.9rem;
    color: #fff;
}
.nopad {
    padding: 0px;
    margin: 0px;
    margin-bottom: 0.5rem;
}
h5 {
    margin: 0px;
    padding: 0px;
}

