body {
    height: auto;
    min-height: 100vh;
}



/*  Main Container  */


.container {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}


.welcomer {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.1rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    color: var(--text-muted);
    font-weight: 600;
}


.welcomer p {
    font-size: 1.2rem;
    margin: 0;
}


.title {
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 0 var(--highlight);
}
.small-title {
    font-size: 2.2rem;
}


.container .early-access-promo {
    width: 35%;
    justify-content: space-evenly;
    padding: 1em;
}

.early-access-promo > h2, .early-access-promo > h3 {
    margin: 0;
}

.new-vid-thumb {
    width: 60%;
    margin: 1rem;
}


/*  Mid Con  */

.mid-con {
    height: 80%;
    width: 85%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3%;
    justify-items: center;
    align-content: center;
    margin-top: 2em;
}

.con {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    border-radius: 1rem;
    background-color: var(--bg);
    color: var(--theme-light);
    margin-bottom: 2em;

    border-left: solid 5px var(--theme-darker);
    border-top: solid 5px var(--theme-darker);
    border-right: solid 5px var(--theme-darkest);
    border-bottom: solid 5px var(--theme-darkest);
}

.new-con {
    background-color: inherit;
    border: none;
}

.new-con > .button {
    position: relative;
    width: 100%;
    /* box-shadow: 3px 5px 0 0 var(--theme-dark); */
    transition: all .4s;
}

.new-con > .button:hover {
    transform: scale(1.02);
}

.new-con > .button > img {
    width: 100%;
    border-radius: 1rem;
    border: solid 3px var(--theme-dark);
    border-top: solid 3px var(--theme-color);
    box-shadow: 0 0 5px 2px var(--theme-color);
    transition: all .4s;
}

.new-con > .button:hover > img {
    box-shadow: 0 0 10px 2px var(--theme-light);
}

.new-con > .button > p {
    position: absolute;
    text-shadow: 2px 2px 0px var(--shadow-dark);
}

.new-con > .button > .second-variant-img {
    position: absolute;
    height: 80%;
    width: auto;
    border: none;
    box-shadow: none;
}

.new-con h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--theme-light);
}


.con > .conta {
    height: 95%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    padding-top: .5em;
    padding-bottom: 1.5em;
    color: var(--text);
}


.conta .normal-button {
    width: 40%;
    background-color: var(--theme-darkest);
    color: var(--text);
}

.normal-button:hover {
    background-color: var(--theme-darker);
}
.normal-button:active {
    background-color: var(--theme-dark);
}

.conta img {
    height: 90%;
    width: 90%;
}

.container > a:first-of-type > .normal-button {
    animation: infinite 3s;
    animation-name: main;
}

@keyframes main {
    0% {
        box-shadow: 3px 5px 0 0 var(--theme-dark),
                3px 5px 7px 0 var(--shadow-dark);
    } 50% {
        box-shadow: 3px 5px 0 0 var(--theme-dark),
                3px 5px 7px 0 var(--theme-light);
    } 100% {
        box-shadow: 3px 5px 0 0 var(--theme-dark),
                3px 5px 7px 0 var(--shadow-dark);
    }
}


.main-logo {
    height: 6rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 3px var(--border)) drop-shadow(0 0 1px var(--border));
}


/*  Links  */


.patreon-banner {
    border: solid 6px red;
    box-shadow: 0 0 7px 0px white;
}

.patreon-banner img {
    width: 100%;
}


/*  Media Queries  */

/* default -> desktop */


/* Mega large devices (1500px and up)*/
@media only screen and (min-width: 1500px) {
    
}

@media only screen and (max-width: 992px) {
    .con,
    .new-con > .button > img {
        border-radius: .8rem;
    }
}

@media only screen and (max-width: 600px) {
    .con,
    .new-con > .button > img {
        border-radius: .6rem;
    }
}

/* Extra large devices (large laptops and desktops, 1500px and down)*/
@media only screen and (max-width: 1500px) {
    .conta .normal-button {
        width: 50%;
    }
}

/* Large devices (laptops/desktops, 1200px and down) */
@media only screen and (max-width: 1200px) {
    .mid-con {
        grid-template-columns: repeat(2, 1fr);
    }

    .early-access-promo h2 {
        font-size: 1.6rem;
    }

    .early-access-promo h3 {
        font-size: 1rem;
    }
}

/* Medium devices (landscape tablets, 992px and down) */
@media only screen and (max-width: 992px) {
    
}

/* Small devices (portrait tablets and large phones, 768px and down) */
@media only screen and (max-width: 768px) {
    .title {
        font-size: 2.6rem;
    }

    .conta .normal-button {
        width: 40%;
    }

    .container .welcomer {
        width: 50%;
        font-size: 1rem;
    }

    .container .early-access-promo {
        width: 45%;
    }

    .early-access-promo h2 {
        font-size: 1.3rem;
    }

    .early-access-promo h3 {
        font-size: 1rem;
    }

    .new-vid-thumb {
        width: 80%;
    }

    .main-logo {
        height: 6rem;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .main-logo {
        height: 4rem;
        float: left;
        margin-left: .5rem;
        margin-right: .5rem;
        margin-bottom: 0;
    }

    .title {
        font-size: 2rem;
    }

    .mid-con {
        grid-template-columns: 1fr;
    }

    .con {
        width: 85%;
    }

    .container .welcomer {
        width: 80%;
        flex-direction: row;
    }

    .container .early-access-promo {
        display: none;
    }
}
