* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    font-family: 'Dancing Script', cursive;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-items: center;
    align-items: center;
    background-color: #FEC2E6;
}

h1 {
    color: #4616D5;
    padding: 20px;
    font-size: 5rem;
    font-weight: 900;
    text-align: center;
    font-family: 'Dancing Script', cursive;

}

img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

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

    border-top: 1px solid #4616D5;
    border-bottom: 1px solid #4616D5;
}

.michis-title_section {
    width: 100%;
    color: #62FFC9;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 20px;
    background: rgb(254, 194, 230);
    background: -moz-linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
    background: -webkit-linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
    background: linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fec2e6", endColorstr="#fec2e6", GradientType=1);
}

.uploadingMichi-title {
    margin: 15px;
    padding: 20px;
    color: #62FFC9;
    background: rgb(254, 194, 230);
        background: -moz-linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
        background: -webkit-linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
        background: linear-gradient(270deg, rgba(254, 194, 230, 1) 0%, rgba(30, 22, 208, 1) 34%, rgba(254, 194, 230, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fec2e6", endColorstr="#fec2e6", GradientType=1);
}

.uploading__michi--label {
    width: calc(100%);
    margin: 20px;
    padding: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(2, 14, 18);
    border-radius: 20px;
    text-align: center;
}

#uploadImage {
    min-width: 50px;
    min-height: 50px;
    max-width: 200px;
    max-height: 200px;
}

.main-section__images--michis {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;

    flex-wrap: wrap;
}

.section-image__container--group {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px;

}

.section__btn--style {
    font-size: 30px;
    margin: auto;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 0;
    border-radius: 50px;
}

.section__btn--style:hover {
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 20px;
    font-size: 60px;
    transition: all 0.3s ease;
}



.btn__class {
    width: min-content;
    font-size: 2rem;
    font-weight: 600;
    border: 1px solid;
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    background-color: rgb(183, 228, 228);
    cursor: pointer;
}

#uploadingMichi {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 20px;
    font-size: 20px;


    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.uploadingMichi--containerimage {
    max-width: 300px;
    min-width: 200px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    background-color: blueviolet;
    border-radius: 20px;
}

#uploadingForm {
    display: flex;
    flex-direction: column;
}

#buttonUpload {
    width: 100%;
    /* display: none; */
}

#img-error {
    width: 100%;
    height: 100%;
}

#Error {
    font-size: 20px;
    font-weight: 400;
    color: rgb(24, 9, 190);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.img-container_michis {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px;
}



.btn__class:hover {
    transition: all 1s ease;
    background-color: blue;

}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

@media (min-width:700px) {
    .section-image__container--group {
        width: 175px;
        height: 175px;
    }

    .section__btn--style {
        top: 55px;
        right: 55px;
    }
}