:root {
    --site-color-01: #5A265E;
    --site-color-01-hover: #FF6B97;
    --yellow-background: #FFEEB8;
    --blue-background: #61d4f4;
}

html {
    font-size: 62.5%;
}

@font-face {
    font-family: 'PressStart2P';
    src: url(https://trollz-bottega.neocities.org/fonts/PressStart2P-Regular.ttf);
}

body {
    background-color: var(--site-color-01-hover);
}

body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content:url(https://trollz-bottega.neocities.org/img/logofacebook.png) url(https://trollz-bottega.neocities.org/img/logoinstagram.png) url(https://trollz-bottega.neocities.org/img/logoyoutube.png);
}

.wrapper-main {
    width: 1152px;
    margin: 0 auto;
}
    

h1 {
    font-size: 3rem;
    line-height: 3.4;
    color: var(--site-color-01);
    font-family: 'PressStart2P', serif;
    font-weight: 400;
    text-transform: none;
}

h2 {
    font-size: 2.6rem;
    line-height: 3;
    color: var(--site-color-01);
    font-family: 'PressStart2P', serif;
    font-weight: 400;
    text-transform: none;
}

h3 {
    font-size: 2.2rem;
    line-height: 2.8;
    color: var(--site-color-01);
    font-family: 'PressStart2P', serif;
    font-weight: 400;
    text-transform: none;
}

p  {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--site-color-01);
    font-family: 'PressStart2P', serif;
}

a {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--site-color-01);
    font-family: 'PressStart2P', serif;
    cursor: pointer;
}

.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: var(--yellow-background);
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 60px;
    display: flex;
}

.header-main-logo img {
    height: 50px;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul li a {
    padding:0 10px;
    font-family: 'PressStart2P', serif;
    line-height: 60px;
    color: var(--site-color-01);
    display: block;
    height: 100%;
}

.header-main-nav ul li a:hover {
    color: var(--site-color-01-hover);
}

.header-main-smedia {
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-main-smedia-fb {
    width: 20px;
    height: 20px;
    background-image: url(https://trollz-bottega.neocities.org/img/bwlogofacebook.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-smedia-fb:hover {
    background-image: url(https://trollz-bottega.neocities.org/img/logofacebook.png);
}

.header-main-smedia-in {
    width: 20px;
    height: 20px;
    background-image: url(https://trollz-bottega.neocities.org/img/bwlogoinstagram.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-smedia-in:hover {
    background-image: url(https://trollz-bottega.neocities.org/img/logoinstagram.png);
}

.header-main-smedia-yt {
    width: 20px;
    height: 20px;
    background-image: url(https://trollz-bottega.neocities.org/img/bwlogoyoutube.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-smedia-yt:hover {
    background-image: url(https://trollz-bottega.neocities.org/img/logoyoutube.png);
}

/* Footer */
.footer-main {
    width: 100%;
    padding: 60px 0 100px;
    background-color: var(--site-color-01-hover);
}

.footer-main-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-vip {
    flex-basis: 20%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-vip img {
    width: 40%;
    border-radius: 100px;
}

.footer-vip p {
    text-align: center;
    font-size: 1.2rem;
    padding: 10px 10px 0;
}

.footer-button {
    padding: 10px 20px;
    margin: 60px 0;
    border: 3px solid var(--site-color-01-hover);
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all ease-in-out 200ms;
}

.footer-button:hover {
    border: 3px solid var(--yellow-background);
}

.footer-sitemap {
    flex-basis: 100%;
    display: flex;
}

.footer-sitemap a {
    line-height: 2;
}

.footer-sitemap a:hover {
    color: var(--yellow-background);
    opacity: 80%;
}

.footer-sitemap ul:nth-child(1) {
    border-left: 3px solid var(--yellow-background);
    padding-left: 10px;
}

.footer-sitemap ul:nth-child(1), 
.footer-sitemap ul:nth-child(2) {
    flex-basis: 160px;
    padding-top: 10px;
}

.footer-sitemap ul:nth-child(3) {
    flex-basis: 550px;
    text-align: center;
    padding-top: 39px;
}

.footer-sitemap ul:nth-child(4) {
    flex-grow: 1;
    text-align: right;
}

.footer-sitemap ul:nth-child(4) li {
    clear: both;
    float: right;
}

/* Mobile */

@media only screen and (max-width: 600px) {
    .wrapper-main {
        width: calc(100% - 20px);
    }

    .header-main-logo {
        padding-left: 10px;
    }
    .header-main-nav {
        display: none;
    }
    .header-main-smedia {
        display: none;
    }
}

main {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--yellow-background);
    margin-top: 60px;
    background-image: url(https://trollz-bottega.neocities.org/img/desktoppinkedit.png), url(https://trollz-bottega.neocities.org/img/pinkcitypixels.gif);
    background-color: var(--yellow-background);
    margin-top: 60px;
    background-size: 70vh, cover;
    background-repeat: no-repeat;
    background-position: bottom left calc(50% + 384px), center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    column-gap: 110px;
}

main .main-intro h1 {
    font-size: 5rem;
    line-height: 1.1;
}

main p {
    font-size: 1.6rem;
    line-height: 1.75;
    max-width: 575px;
}

main a {
    margin-top: 30px;
    font-size: 1.6rem;
    display: block;
    height: 26px;
    line-height: 26px;
    background-color: var(--yellow-background);
    padding: 0px 20px;
    width: fit-content;
    border-radius: 24px;
}

main a:hover {
    background-color: var(--site-color-01-hover);
}

main .main-quotes p {
    border-left: 3px solid var(--yellow-background);
    padding-left: 10px;
    padding-top: 1px;
    margin: 425px 4px 0 0;
}

main .main-quotes p:nth-child(1) {
    margin-bottom: 832px;
}

main .main-intro {
    position: relative;
    right: -2vh;
    padding-bottom: 64px;
}

main .main-quotes {
    position: relative;
    left: 2vh;
    padding-bottom: 40px;
}

/* Category Section */
.index-category {
    width: 100%;
    padding: 60px 0;
    background-color: var(--site-color-01-hover);
    display: flex;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.index-category p {
    color: var(--site-color-01-hover);
    text-align: center;
    padding-bottom: 40px;
    flex-basis: 100%;
    text-transform: uppercase;
    font-size: 2rem;
}

.index-category-container {
    width: 200px;
    height: 200px;
    background-color: var(--site-color-01-hover);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.index-category-container:nth-child(2) {
    background-image: url(/img/1one.png);
}

.index-category-container:nth-child(3) {
    background-image: url(/img/2two.png);
}

.index-category-container:nth-child(4) {
    background-image: url(/img/3three.png);
}

.index-category-container:nth-child(5) {
    background-image: url(/img/4four.png);
}

.dark-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--site-color-01-hover);
    opacity: 0.5;
    transition: all ease-in-out 200ms;
}

.index-category-container:hover .dark-overlay {
    opacity: 0;
}

.index-category-container h3 {
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
    z-index: 100;
}

/* About Section */
.index-about {
    width: 100%;
    padding: 60px 0;
    background-color: var(--site-color-01-hover);
}

.index-about-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
}

.index-about-img img {
    width: 256px;
    border-radius: 256px;
}

.index-about-text {
    flex-basis: 455px;
}

.index-about-text p {
    padding: 20px 0;
}

.index-about-text a {
    font-size: 1.6rem;
    display: block;
    height: 26px;
    line-height: 26px;
    background-color: var(--site-color-01);
    padding: 0px 20px;
    width: fit-content;
    border-radius: 24px;
}

.index-about-text a:hover {
    background-color: var(--yellow-background);
}

.index-about-skills {
    flex-basis: 350px;
}

.index-about-skills-bar {
    width: calc(100% - 8px);
    height: 20px;
    border: 3px solid var(--site-color-01);
}

.index-about-skills-bar-fill {
    height: 100%;
    background-color: var(--yellow-background);
}

.mcrm {
    width: 96%;
}

.grds {
    width: 73%;
}

.wbds {
    width: 20%;
}

.pxl {
    width: 39%;
}

.cmfy {
    width: 64%;
}

.crw {
    width: 93%;
}

/* Mobile */

@media only screen and (max-width: 600px) {
    
    main {
        align-items: flex-start;
        background-position: bottom center, center;
        background-size: 65%, cover;
    }
    
    main .main-intro {
        padding-top: 2vh;
    }

    main .main-intro h1 {
        text-align: center;
        padding: 10px 180px 0 0;
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    main p {
        text-align: center;
        padding: 20px 190px 0 0;
        font-size: 1.2rem;
        line-height: 1.75;
    }
    
    main a {
        margin: 35px 150px 0 0;
    }
    
    main .main-quotes {
        display: none;
    }

    .index-category {
        padding: 40px 155px 20px 0px;
        row-gap: 20px;
    }
    
    .index-category p {
        padding-bottom: 20px;
    }
    
    .index-category-container {
        width: 200px;
        height: 200px;
        background-color: var(--yellow-background);
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .index-category-container:nth-child(2) {
        background-image: url(../img/categories/1one.png);
    }
    
    .index-category-container:nth-child(3) {
        background-image: url(../img/categories/2two.png);
    }
    
    .index-category-container:nth-child(4) {
        background-image: url(../img/categories/3three.png);
    }
    
    .index-category-container:nth-child(5) {
        background-image: url(../img/categories/4four.png);
    }
    
    .dark-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--site-color-01);
        opacity: 0.5;
        transition: all ease-in-out 200ms;
    }
    
    .index-category-container:hover .dark-overlay {
        opacity: 0;
    }
    
    .index-category-container h3 {
        font-size: 2rem;
        line-height: 1.6;
        text-align: center;
        z-index: 100;
    }

}