body {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: linear-gradient(0deg, rgba(255, 170, 0, 0.455), rgba(255, 255, 255, 0.718));
}

h2{
    color: rgb(255, 81, 0) ;
    font-size: 30px;
    
}

.main-box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.title-box{
    position: absolute;
    top: -15px;
    left:10px; 
}

#login, #signin {
    border:none;
    background-color: transparent;
    font-weight: bolder;
    font-size:15px;
    color: rgb(255, 81, 0);
}
.sub {
    text-align: right;
    margin-top: 20px;
    color: rgb(255, 81, 0);
    margin-right: 20px;
}
#login:hover, #signin:hover {
    box-shadow: 0px 0px 0px 5px rgba(255, 166, 0, 0.818);
    transition: box-shadow 0.3s ease-in-out;
}

#login{
    margin-right: 30px;
}

.mainBox {
    margin-top:5px;
    background-image: linear-gradient(0deg, rgba(255, 145, 0, 0.614), rgba(255, 238, 124, 0.718));
    width: 1095px;
    height: 80px;
    border-radius: 10px;
    border: 3px double orange;
    padding: 10px;

}

.input-box{
    margin-top: 23px;
    margin-left: 50px;
}

.input-box i{
    margin-right: 10px;
    margin-left: 5px;
    font-size: 18px;
}

#search, #min, #max{
    text-align: center;
}
.searchImage {
    width: 20px;
    height: 20px;
}

#post {
    margin-left: 30px;;
    width: 180px;
    height: 40px;
    background-color: white;
    border:3px solid rgb(255, 77, 0);
    border-radius: 15px;
    background-image: linear-gradient(90deg, rgba(255, 123, 0, 0.744), rgba(255, 0, 0, 0.718));
    cursor: pointer;
    color: white;
    font-size: 15px;
    font-weight: bold;
}
#post:hover {
    background-color: lightgrey;
    box-shadow: 0px 0px 0px 3px rgba(255, 170, 0, 0.722);
}

.text-box{
    height: 585px;
    width: 260px;
    background-color: white; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    padding: 20px; 
    margin-top: 20px;
    text-align: center;
    align-items: center;
    background:
    radial-gradient(circle at 100% 50%, transparent 20%, rgba(255, 221, 0, 0.3) 21%,  rgba(255, 221, 0, 0.3) 34%, transparent 35%, transparent),
    radial-gradient(circle at 0% 50%, transparent 20%,   rgba(255, 221, 0, 0.3) 21%,   rgba(255, 221, 0, 0.3) 34%, transparent 35%, transparent) 0 -50px;
    background-color: rgb(252, 166, 46);
    background-size:75px 100px;
}

.text{
    font-size: 50px;
    color: white;
    margin-top: 80px;
    text-shadow : 0px 0px 10px rgb(254, 17, 0);
    animation: backgroundMoving 10s ease-in-out infinite;
}

@keyframes backgroundMoving {
    0% {
      transform: rotateY(0deg);
    }
    25% {
      transform: rotateY(180deg);
    }
    50% {
      transform: rotateY(360deg);
    }
    75%{
        transform: rotateY(180deg);
    }
    100%{
        transform: rotateY(0deg);
    }
}

.text i{
    font-size: 30px;
    color: white;
}

.text2{
    font-size: 18px;
    color: white;
}

.wrap-box{
    height: 585px;
    width:1120px;
    background-color: white; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    padding: 20px; 
    margin-top: 20px;
    overflow: auto;
}
.wrap-box::-webkit-scrollbar {
    display: none;
  }



.select {
    text-align: center;
    -webkit-appearance:none;
    background-color: transparent;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    height: 35px;
    width: 150px;
    margin-right: 10px;
    font-size: 15px;
}

.select:hover{
    box-shadow: 3px 3px 3px rgb(255, 47, 0);
}

.select:focus{
    outline: none;
    border: 4px solid rgb(255, 38, 0);
}

.select option{
    color: black;
}

#search{
    text-align: center;
    background-color: transparent;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    height: 30px;
    width: 220px;
    margin-right: 30px;
}

#search::placeholder{
    color: white;
    font-weight: bolder;
}

#search:hover{
    box-shadow: 3px 3px 3px orangered;
}

#search:focus{
    outline: none;
    border: 4px solid rgb(255, 38, 0);
}

#min{
    height: 20px;;
    text-align: center;
    background-color: transparent;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    height: 24px;
    width: 140px;
}

#max{
    height: 20px;;
    text-align: center;
    width: 140px;
    background-color: transparent;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    height: 24px;
}

#min::placeholder{
    color: white;
    font-weight: bolder;
}

#max::placeholder{
    color: white;
    font-weight: bolder;
}

#min:hover{
    box-shadow: 2px 2px 2px orangered;
}

#max:hover{
    box-shadow: 2px 2px 2px orangered;
}

#min:focus{
    outline: none;
    border: 4px solid rgb(255, 38, 0);
}

#max:focus{
    outline: none;
    border: 4px solid rgb(255, 38, 0);
}

.productShow-box{
    margin-top: 25px;
    height: 400px;
    width: 1080px;
    border-top: 5px solid rgba(255, 166, 0, 0.856);
    padding: 20px;
}

.product-image {
    margin:30px 30px auto 30px;
    width: 150px;
    height: 180px;
    border-radius: 20px;
    background-position: center;
}

.product_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-title {
    margin: 10px 30px auto 30px;
}

.product-price {
    margin: auto 30px 30px 30px;
    font-weight: bolder;
}