:root {
    --bg: #101011;
    --bga: rgb(250, 250, 250);
    --blue: #2d3436;
    --bluea: #0e3888;
    --green: #1eb6a2;
    --green-dark: #107466;
    --text: #fff;
}
/* alt body bg rgb(27 30 33)*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    overflow-x: hidden;
    width: 100%;
}

h1 {
    font-size: 0;
    line-height: 0;
}

.error {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: url("/public/images/404.svg");
    background-position: center center;
    background-repeat: no-repeat;
}
.error h2 {
    margin-bottom: 20px;
    color: #2ba6e2;
    font-size: 4rem;
}
.error a,
.error a:visited {
    color: #fff;
    font-size: 2rem;
}
.error .lost {
    padding: 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}
body {
    overflow-x: hidden;
    width: 100%;
    background: var(--bga);
    color: var(--bg);
    font-family: "Raleway", sans-serif;
}
main {
    /*background-image: url("/public/images/bg.png");
    background-color: #ccc;
    background-blend-mode: overlay;*/
    background-position: top center;
    background-repeat: repeat;
}
h2 {
    font-weight: 700;
}
.call-to-action h2 {
    margin-bottom: 10px;
    width: 100%;
    color: #58ea1d;
    text-align: left;
    font-weight: 700;
    font-size: 4rem;
}
.call-to-action h3 {
    width: 100%;
    color: #2ba6e2;
    text-align: left;
    font-weight: 400;
    font-size: 3rem;
}
.call-to-action {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    /*background-image: url("https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");*/
    background-image: url("/public/images/bg.svg");
    background-position: center right;
    background-size: 50% 50%;
    background-repeat: no-repeat;

    background-blend-mode: luminosity;
}
.prop {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    height: 100%;
    text-align: center;
    /*background: rgba(0, 0, 0, 0.4);*/
}
form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    margin: 40px 0;
    padding: 2rem 0;
    width: 100%;
    border-radius: 5px;
}
label,
input {
    display: block;
    width: 100%;
    font-size: 1.2rem;
}
label {
    margin-bottom: 10px;
    font-weight: 700;
}
input {
    margin-bottom: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: inset 2px -5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}
input[type="text"],
input[type="email"] {
    border: 2px solid #000;
}
input[type="submit"] {
    margin-top: 20px;
    padding: 20px;
    border: none;
    border-radius: 9999px;
    background: var(--green);
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.1), inset 0 -10px 20px var(--green-dark);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover {
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.1), inset 0 -100px 20px var(--green-dark);
    cursor: pointer;
}
.standout {
    display: flex;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    color: var(--bg);
}
.center-box,
.post-list {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 50px;
    padding: 100px;
    width: 100%;
}
.post-list {
    flex-direction: column;
}
.center-box img {
    margin-right: 40px;
    width: 30%;
}
.center-box div {
    width: 40%;
}
.center-box h3,
.grid-of-equals h3,
.post-list h3 {
    margin-bottom: 20px;
    color: #2ba6e2;
    text-align: left;
    font-size: 3rem;
}
.center-box h4 {
    text-align: left;
    font-weight: 400;
    font-size: 1.5rem;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    background: var(--bga);
}

nav div a {
    padding: 10px;
    color: var(--green);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
nav div a:hover {
    color: var(--bluea);
}
img[alt="logo"] {
    width: 100px;
    height: auto;
}
.vp {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 25vh;
    color: var(--bg);
}
.box {
    position: absolute;
    top: -150px;
    left: 20%;
    display: none;
    width: 60%;
    height: 200px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2), inset 0 -20px 50px rgba(0, 0, 0, 0.1);
}
.content {
    padding: 20px;
    color: var(--bg);
}
.post-list {
    margin-top: 100px;
    padding: 20px;
    color: var(--bg);
}

.grid-of-equals {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
}
.post-list .grid-of-equals {
    justify-content: flex-start;
}
.grid-of-equals h3 {
    display: block;
    flex-shrink: 0;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}
.post-list .grid-of-equals h3,
.post-list .grid-of-equals h5 {
    margin: 10px 0;
    padding: 10px 0;
    text-align: left;
}
.grid-of-equals .item {
    flex-shrink: 0;
    padding: 20px 10px;
    width: 33%;
    color: var(--bg);
    text-align: center;
}

.grid-of-equals .item-post {
    display: flex;
    flex-direction: column;
    width: 25%;
    text-align: left;
}
.grid-of-equals .item-post:first-of-type {
    flex-direction: row;
    width: 100%;
}

.item img {
    margin: 10px auto;
    width: 20%;
}

.item img.item-full {
    margin: 0 auto;
    width: auto;
    height: 300px;
}
.item-post .img-holder {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    margin: 10px 20px 10px 0;
    width: 100%;
    height: 300px;
}
.item-post:first-of-type .img-holder {
    width: 50%;
    height: 500px;
}
.item-post .img-holder img {
    width: 100%;
}
.item h4 {
    color: #2ba6e2;
    font-size: 1.5rem;
}
.item h5 {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
}
footer {
    padding: 40px 10px;
    color: var(--bg);
    text-align: center;
}
footer h4 {
    color: var(--bg);
    font-weight: 700;
    font-size: 1.2rem;
}

.post-list .button {
    display: block;
    margin: 50px auto;
    padding: 20px;
    width: 80%;
    border: 2px solid var(--green-dark);
    border-radius: 9999px;
    color: var(--green-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.post-list .item-post:first-of-type .button {
    display: block;
    margin: 100px 0 50px;
    padding: 20px;
    width: 30%;
    border: none;
    border-radius: 9999px;
    background: var(--green);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2), inset 0 -10px 30px var(--green-dark);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.post-list .item-post:first-of-type .button:hover {
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.2), inset 0 -200px 30px var(--green-dark);
    cursor: pointer;
}
.post-list .button:hover {
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.2), inset 0 -200px 30px var(--green-dark);
    color: #fff;
    cursor: pointer;
}

.item-post p {
    font-size: 1.2rem;
}
.meta h4 {
    margin-bottom: 20px;
}
textarea {
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: inset 2px -5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    resize: none;
}

form select {
    display: block;
    width: 100%;
}

/* The container must be positioned relative: */
.center-box .custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    margin-bottom: 20px;
    padding: 5px 10px;
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: inset 2px -5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
    content: "";
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    top: 13px;
    border-color: transparent transparent #000 transparent;
}

/* style the items (options), including the selected item: */
.center-box .select-items div,
.center-box .select-selected {
    padding: 10px 16px;
    width: 100%;
    border: 2px solid #000;
    color: #000;
    cursor: pointer;
}
.center-box .select-items div {
    border: none;
}
/* Style items (options): */
.center-box .select-items {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    border: none;
    background-color: rgb(201, 196, 196);
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.make-space {
    margin: 200px 0;
}

article {
    display: block;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: 100px auto;
    width: 55%;
}

article .img-holder {
    overflow: hidden;
    width: 100%;
    height: 60vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
article img {
    width: 100%;
}
article h1 {
    margin-top: 30px;
    padding: 20px 0;
    color: #2ba6e2;
    font-size: 3rem;
}

article h2 {
    text-transform: uppercase;
    font-size: 1.2rem;
}

article h3 {
    margin-bottom: 20px;
    color: rgb(109, 106, 106);
    font-weight: 500;
    font-size: 14pt;
}

article .post {
    margin: 20px auto;
    width: 100%;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.2rem;
}

article .post p {
    margin-bottom: 20px;
}

article .post h2,
article .post h3,
article .post h4,
article .post h5,
article .post h6 {
    margin-bottom: 20px;
}
article .post h2,
article .post h3 {
    color: #2ba6e2;
    font-size: 2rem;
}

article .post h3 {
    font-size: 1.5rem;
}

article .post pre {
    display: block;
    overflow-x: scroll;
    margin: 40px 0;
    padding: 20px;
    width: 100%;
    border-radius: 5px;
    background: var(--blue);
    box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.2);
    color: #ccc;
}

article .post pre::-webkit-scrollbar {
    width: 1em;
}

article .post pre::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

article .post pre::-webkit-scrollbar-thumb {
    outline: 1px solid slategrey;
    border-radius: 9999px;
    background-color: darkgrey;
    background-image: linear-gradient(to right, #9da1a3 0%, #c0c7ca 100%);
}

article table {
    margin: 20px auto;
    width: 100%;
}
article table th,
article table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.social {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    width: auto;
}
.social a {
    margin-right: 20px;
    width: 30px;
}
.social a img {
    width: 100%;
}
.social a:last-of-type {
    margin-right: 0;
}
article h1 {
    word-break: break-word;
    line-height: normal;
}
h4.about {
    display: block;
    margin: 0 auto 30px;
    width: 80%;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
}
@media screen and (max-width: 930px) {
    .center-box {
        flex-direction: column;
    }
    .center-box img {
        margin: 20px auto;
        width: 50%;
    }
    .center-box div {
        width: 100%;
    }
    .grid-of-equals .item {
        width: 100%;
    }
    .item-post:first-of-type .img-holder {
        width: 100%;
    }
    .grid-of-equals .item-post:first-of-type {
        flex-direction: column;
    }
    .post-list .item-post:first-of-type .button {
        margin: 50px auto;
        width: 80%;
    }
    article {
        margin: 300px auto;
        width: 96%;
    }
}

@media screen and (max-width: 850px) {
    .call-to-action {
        height: 80vh;
        background-position: center bottom;
    }
    .prop {
        justify-content: flex-start;
        padding: 6rem 2rem;
        text-align: center;
    }
    .prop h2,
    .prop h3 {
        text-align: center;
    }
}

@media screen and (max-width: 670px) {
    .center-box {
        flex-direction: column;
        padding: 100px 20px;
    }
    .center-box img {
        margin: 20px auto;
        width: 100%;
    }
    .center-box div {
        width: 100%;
    }
    .grid-of-equals .item {
        width: 100%;
    }
    .item-post:first-of-type .img-holder {
        width: 100%;
    }
    .grid-of-equals .item-post:first-of-type {
        flex-direction: column;
    }
    .post-list .item-post:first-of-type .button {
        margin: 50px auto;
        width: 80%;
    }
    .prop {
        justify-content: flex-start;
        padding: 6rem 30px;
        text-align: center;
    }
    .item img.item-full {
        width: 100%;
        height: auto;
    }
    .item-post:first-of-type .img-holder {
        height: auto;
    }
    h4.about {
        width: 98%;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {
    nav {
        flex-direction: column;
        margin-bottom: 100px;
    }
    img[alt="logo"] {
        width: 50%;
    }
    .call-to-action {
        margin-top: 150px;
        height: 70vh;
    }
    .prop {
        padding: 6rem 10px;
    }
    .prop h2 {
        font-size: 2.3rem;
    }
    .prop h3 {
        font-size: 1.5rem;
    }
}
