@import url(colors.css);
@import url(reset.css);


/* -------------------------------------------------------
1.Main Page 

*/

body {
    background-color: var(--main_violet);
    color: var(--DirtyWhite);
    font-family: "Inter";
}

.header{
    margin-top: 50px;
    margin-left: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo__container {
    display: flex;
    align-items: center;
}



.header__logo {
    width: 50px;
}

.header__text{
    font-family: "Inter";
    font-size: 1.07vw;
    font-weight: 750;
    margin-left: 15px;
    margin-right: 30px;
    color: var(--DirtyWhite);
}

.header__nav{
    display: flex;
    gap: 75px;
    align-items: center;
    margin-right: 30px;
    font-family: var(--fontInter);   
}

.nav__text a{
    font-size: 0.8vw;
    font-weight: 500;
    color: var(--UnactiveColor);
}

.nav__text__select a{
    font-size: 0.8vw;
    font-weight: 500;
    color: var(--DirtyWhite);
}

.header__right{
    
}

/* -------------------------------------------------------
1.1 Main Page hero

*/

.hero{
    
    margin-top: 50px;  
    width: 100%;
    
}

.hero__content{
    width: fit-content;
    margin-inline: auto;
}


.hero__text{
    font-family: "Press Start 2P";
    font-size: 7vw;
    letter-spacing: 15px;
    color: var(--DirtyWhite);
    
    text-align: center;
    line-height: 1.5em;

    animation: neon 0.2s ease-in-out infinite alternate;

      text-shadow:
        0 0 1px #ffffff,
        0 0 3px #a855f7,
        0 0 4px #8b2cff,
        0 0 6px #6d1cff;
}

.hero__p{
    margin-top: 25px;
    font-family: "Inter";
    font-size: 1vw;
    font-weight: 500;
    text-align: center;
}

/* -------------------------------------------------------
1.2 Main Page my projects grid

*/

.grid__container{
    max-width: 100%;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    margin-inline: 150px;

}

.container__content{
    width: 300px; height: 500px;
    margin-inline: auto;
    border-style: solid;
    border-color: #6d1cff;
    border-radius: 20px;
    overflow: hidden;


background: linear-gradient(
        120deg,
        #030414,
        #0b0820,
        #160b2e,
        #0b0820,
        #030414
    );

    background-size: 300% 300%;
    animation: cardGlow 7s ease infinite;
}

@keyframes cardGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.card__image {
    width: fit-content;
    height: 35%;

    border-style: groove;
    border-color:#19017bb0 rgba(75, 0, 128, 0.738);
    border-radius: 15px;

    overflow: hidden;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    box-sizing: border-box;
    position: relative;
}

.minecraft__card__Image {
    width: 100%;
    transform: scale(1.2);
    transform-origin: 30% 5%;
}

.gitea__image { 
    width: 100%;
    transform: scale(1.25);
    transform-origin: 50% 80%;
}

.BFL__image { 
    width: 100%;
    transform: scale(1.2);
    transform-origin: 25% 0%;
}

.project-card__content{
    font-size: 15px;
    margin-left: 10px;
    margin-top: 10px;
    font-family: "Inter";
    font-weight: 700;
    color:  var(--DirtyWhite);
}

.project-card__content p{
    line-height: 30px;
    margin-top: 15px;
    font-size: 17px;
    font-weight: 500;
}

/* -------------------------------------------------------
2. Minecraft page

*/

.minecraft__image {
    width: 100%;
    height: 1200px;
    overflow: hidden;
    position: absolute;
    
    -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%);
    z-index: 1;
        
}
.minecraft__image img {
    width: 100%;
    height: 100%;
    padding-bottom: 1000px;
    object-fit: cover;
    z-index: 2;

    }
.hero__minecraft_con{
    position: relative;
    z-index: 3;
    font-family: "Press Start 2P";

        padding: 270px 200px;
}

.hero__minecraft_con h1{
    font-size: 115px;
    font-weight: 1;
    text-shadow:
        0 0 2px #ffffff,
        0 0 5px #a855f7,
        0 0 10px #8b2cff,
        0 0 20px #6d1cff;

}

.hero__minecraft_con h2{
    font-size: 45px;
    padding-top: 45px;
    letter-spacing: 0.5px;
    text-shadow: 
   5px 10px 10px #000000;
   font-weight: 1;
}

.hero__minecraft_con p{
    font-family: "Inter";
    letter-spacing: 4px;
    font-size: 40px;
    font-weight: 500;
    padding-top: 45px;
    text-shadow: 
   5px 10px 10px #000000;
}

/* -------------------------------------------------------
3. Git page

*/

.git__page__body{
    /* background-color: #1B1F23; */

    background-color: #030a07;
}