


.root.mk {
    gap: 2rem;
    padding: 0 0 4rem 0;
    text-align: center;
}
.pletomakerwrappermain {
    width: 100%;
}

.content.pletomakercontent {
    height: unset;
}

.content.pletomakercontent h1 {
    line-height: 100%;
    margin-top: 4rem;
}

.content.pletomakercontent p {
    font-size: 3rem;
    font-family: 'car', sans-serif;

    padding: 0 2rem;
}

.pletomaker {
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


canvas#c {
    width: 100%;
    height: 100%;
    border: 4px solid black;
}

.addImage {
    width: 100%;
    height: 100%;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    background-color: rgba(210, 172, 131, 0.95);
    top: 0;
    left: 0;
    border: 6px solid black;
}
.addImage input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
 
}
.addImage img {
    width: 50px;
    /* margin: -20px 0 0 0; */
}
.addImage p {
    font-size: 3rem;
    max-width: 300px;
    text-align: center;
    color: black;
    font-family: 'car', sans-serif;

}
.addImage .loader {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    border: 10px solid white;
    border-left: 10px solid transparent;

    animation: loader 1s infinite linear;
}
@keyframes loader {
    100% {
        transform: rotate(360deg);
    }
}




.pletomaker .image {
    height: 100%;
    width: 500px;

    aspect-ratio: 1/1;
    background-color: #231F20;
    position: relative;
}


.pletomaker .tools {
    width: 100%;
    aspect-ratio: 1/1;
    width: 500px;

    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}



@media only screen and (max-width: 1100px) {

    .pletomaker {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
    }
    .pletomaker .tools {
        aspect-ratio: unset;
    }
}

@media only screen and (max-width: 600px) {
    .pletomaker .image {
        width: 90%;
        margin-top: 0rem;
        background-color: #fff;
        position: relative;
    }
    
    .pletomaker .tools {
        width: 90%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .pletomaker .tools button {
        font-size: 1.8rem;
    }

    .content.pletomakercontent h1 {
        line-height: 110%;
        font-size: 5rem;
    }

    .content.pletomakercontent p {
        font-size: 2rem;
        font-family: 'car', sans-serif;
    }

    button:hover {
        scale: 1;
    }

    .addImage p {
        font-size: 2rem;
        max-width: 300px;
        text-align: center;
        color: black;
        font-family: 'car', sans-serif;
    
    }
}











.pletomakerwrappermain button {
    font-size: 2.5rem;
    padding: 0.4rem 1.6rem 0.6rem 1.6rem;
    border: 3px solid black;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'car';

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: normal;
    background-color: white;
}
.pletomakerwrappermain button.yellow {
    background-color: #FFB400;
    color: black;
}
.pletomakerwrappermain button.green {
    background-color: rgb(50, 172, 50);
    color: white;
}
.pletomakerwrappermain button.red {
    background-color: rgb(203, 44, 44);
    color: white;
}







.entering {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: fade 2s ease-in-out;
    z-index: 2;
}
.entering img.mbg {
    width: 100%;
    height: 100%;
}

.entering .contents {
    position: absolute;
    color: white;
    padding: 0 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 80%;

}
.contents p {
    font-family: 'car', sans-serif;
    font-size: 3rem;
    text-align: center;
}

.loaddd {
    width: 90%;
    max-width: 400px;
    height: 20px;
    background-color: black;
    border-radius: 100px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.innerload {
    position: absolute;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: white;
    border-radius: 100px;

    animation: load 2s ease-in-out;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}