body {
    margin:0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    
}

body::-webkit-scrollbar{
    display: none;
}


a{
    text-decoration: none;
}


.page{
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-right: 15px; 
}

.em_s{
    display: flex;
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    
}
.top{
    margin-top: 32px;
}
.fontsize{
    font-size: 200%;
}

.title{
    margin: 25px;
}

.image_brightness{
    filter: brightness(0.5);
    width: 100%;
}

.text_upon{
    position:absolute;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
    justify-content: space-evenly;
    color: aliceblue;
    
    z-index:2;
    font-size:200%
}

.margin{
    margin: 0 25px;
}

.back{
    background-color: rgb(219, 219, 241);
    padding: 10px;
    color: #241424;
    border-radius: 25px;
    display:  flex;
    transition: transform 1s;
    
}


.back:hover{
    transform: scale(1.1);
    background-color: rgb(226, 226, 251);
    color: black;

}


.size{
    width: 75px;
    height: 75px;
}

.align{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}


.align2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.alignself{
    position: absolute;
    left: 20px;
    top:11px;
}


.box{
    display: flex;
    flex-direction: row;
    align-items:  center;
    gap: 75px;
    
}

.image{
    width: 500px;
    border-radius: 10px;
    box-shadow: 20px -20px 10px rgb(206, 206, 206);
    height: auto;

    transition: transform 0.5s;
}

.image:hover{
    transform: scale(1.1);
    position: relative;
    top:3px;
    left:1px;
}

.sticky{
    position: sticky;
    top:20px;
}


.whithe-off{
    mix-blend-mode: multiply;
}

.floating_box{
    background-color: black;
    color: aliceblue;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 25px 10px 10px gray;
}

.box_stage{
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.floating_box:hover{
    cursor: pointer;
    position: relative;
    background-color: rgb(20, 41, 80);
    top: 2px;
    left: 1px;
}



.create{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 85px;
}

.space{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:50px;
}

.pend{
    display: flex;
    
    border-radius: 25px;
}


.border{
    border-radius: 10px;
    box-shadow: -25px -10px 10px rgb(206, 206, 206);
    width: 500px;
    height: auto;
    transition: transform 0.5s;
}

.border:hover{
    transform: scale(1.1);
    position: relative;
    top:3px;
    left:1px;
}



.bordercir{
    border-radius: 10px;
    box-shadow: -25px -10px 10px rgb(206, 206, 206);
    width: 500px;
    height: auto;

    transition: transform 0.5s;
}

.bordercir:hover{
    transform: scale(1.1);
    position: relative;
    top:3px;
    left:1px;
}

.bottom{
    display: flex;
    margin-top: 50px;
    width: 100%;
    flex-direction: row;
    background-color: black;
    color: rgb(0, 0, 0);
    align-items: end;
    flex-grow: 1;
}

.gap{
    gap: 30px;
}

.marginbottom{
    margin-bottom: 20px;
}



@media screen and (min-width: 576px) and (max-width: 991px) {
    .align{
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        margin-top: 10px;
        width: 80%;
        align-items: center;
       
    }
    .yellow{
        align-items: start;
    }
   
    .size{
        width: 300px;
        height: auto;
    }


    .back{
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .image{
        width: 900px;
        height: auto;
    }


    .border{
        width: 900px;
        height: auto;
    }


    .bordercir{
        width: 900px;
        height: auto;
    }


    .box{
        flex-direction: column;
        align-items: center;
        gap: 20px;


    }


    .create{
        flex-direction: column-reverse;
        gap:20px;
    }


    .alignself {
        position: unset;
        
        margin-bottom: 1rem; /* Let it flow with the normal document layout */
       
       
       
    }
            
    .space{
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .floating_box{
        width: 95%;
        margin-left: auto;
        margin-right: auto;

    }

    .margin {
        margin: 0 10px;
    }


    .floating_box{
        width: 900px;
        height: auto;
    }

    .bottom{
        visibility: hidden;
    }

    p{
        font-size: 32px;
    }

    h3{
        font-size: 45px;
    }

    body{
        align-items: center;
    }

    h1{
        font-size: 45px;
    }

}



