/* core edit */

:root {
    --bccolor: rgb(0, 0, 0);
    --font: sans-serif;
    --hovercolor: rgb(59, 34, 148);  /* rgb(59, 34, 148) */
    --standardcolor: rgb(255, 255, 255);
    --graycolor: rgb(39, 39, 39);
}



a:any-link {
    color: rgb(236, 208, 252);
    text-decoration: none;
}

a:-webkit-any-link {
    color: rgb(236, 208, 252) ;
    text-decoration: none;
}

a:visited{
    color: rgb(217, 159, 250) ;
    text-decoration: none;
}
/* navigation */

.navigation {
    display: none;
    transition: all 1s ;
}

.navigation ul {
    display: flex;
    list-style: none;
}

.navigation a {
    text-decoration: none;
    color: var(--standardcolor);
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}


body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 9px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #191919;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: rgb(59, 34, 148);
    border-radius: 20px;
    transition: 700ms all;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
    background: #a594d4;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,

button,
ul {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: auto;
    min-height: 100vh;
}


/*header*/



.head {
    width: 100%;
    min-height: 7vh;
    background-color: var(--bccolor);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgb(59, 34, 148);
}

.head h2 span {
    color: rgb(255, 255, 255);
}


/* hamburger menu function */

.hamburger {
    width: 10%;
    min-height: 3vh;
    border: none;
    background-color: var(--bccolor);
    outline-color: black;
    transition: all 1s ;
}

.hamburger div {
    width: 100%;
    min-height: 5vh;
    transition: 1s all ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--standardcolor);
    position: absolute;
}

.hamburger span:first-child {
    margin-bottom: 1rem;
}

.hamburger span:nth-child(3) {
    margin-top: 1rem;
}

.hamburger-menu {
    position: absolute;
    width: 60%;
    background-color: var(--standardcolor);
    height: 30vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    left: -600px;
    transition: 1s ease all;
}

.hamburger-menu ul {
    list-style: none;
    width: 100%;
}

.hamburger-menu a {
    text-decoration: none;
    color: #000;
    width: 100%;
}

.hamburger-menu li {
    width: 100%;
    margin: 1rem 0rem;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.hamburger-menu li:hover {
    background-color: pink;
    transition: all 1s ease;
}

.hamburger--active {
    display: flex;
    position: absolute;
    width: 60%;
    background-color: var(--standardcolor);
    top: 0;
    left: 0;
    transition: all 1s ease;
    animation: easeslide .5s forwards;
    height: 30vh;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}


/* look */

.hamburger--look {
    transform: rotate(50deg);
    transition: .8s ease all;
    top: 43px;
}

.hamburger--look--2 {
    transform: rotate(130deg);
    transition: .8s ease all;
    top: 28px;
}

.hamburger--look--3 {
    display: none;
}


/*main*/

.main-grid {
    width: 100%;
    height: 105vh;
    background-image: url("../image/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: first baseline;
    align-items: center;
    flex-direction: column;
}


/*grid-item-1 */


.links {
    grid-row: 3/4;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: var(--standardcolor);
}

.grid-item-form input {
    outline: 0;
    width: 125px;
    height: 30px;
    border: none;
}

.btn {
    padding: .5rem;
    display: inline-block;
    margin-top: .5rem;
    background-color: var(--hovercolor);
    text-decoration: none;
    border-radius: 5px;
    color: var(--standardcolor);
}

.main-grid h1 {
    font-size: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    color: var(--standardcolor);
}

.main-grid h2 {
    font-size: 1.2rem;
    align-items: center;
    text-align: center;
    color: var(--standardcolor);
}

.main-grid h3 {
    font-size: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    color: var(--standardcolor);
}


.css img,
.design img {
    max-width: 15%;
}


/*footer*/


.foot {
    width: 100%;
    min-height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bccolor);
    color: var(--standardcolor);
    border-top: 2px solid rgb(59, 34, 148);
}

/*media querries */

@media (min-width:600px) {
    .main-grid {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    .hamburger {
        display: none;
    }

    .navigation {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 1.2rem;
    }

    .navigation li {
        margin: 1rem;
    }

    .navigation a:hover {
        color: var(--hovercolor);
    }

    .grid-item-1,
    .grid-item-2,
    .grid-item-3 {
        grid-column: 1/3;
    }

    .hamburger-menu {
        display: none;
    }
}

@media (min-width:850px) {
    .main-grid {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }

    .grid-item-1,
    .grid-item-2,
    .grid-item-3 {
        grid-column: 1/5;
    }

    .grid-item-1 {
        grid-row: 1/4;
    }

    .grid-item-3 {
        grid-row: 5/9;
    }

    .grid-item-2 {
        grid-row: 4/5;
    }

    .hamburger-menu {
        display: none;
    }

    .grid-item-form input {
        width: 250px;
    }
}


/* animation */

@keyframes easeslide {
    0% {
        transform: translateX(-600px);
        opacity: 20%;
    }

    100% {
        transform: translateX(0px);
        opacity: 100%;
    }
}