#allContent{
    padding: 5px 60px 0px 60px;
}
#header{
    background-image: url("/assets/OIP\ \(2\).webp");
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 10px 5px 5px 40px;
    margin-top: 40px;
    margin-bottom: 20px;
}
h1{
    color: white;
    background: linear-gradient(to right, #FFFFFF, white, #FF9494,#FF9494,#FF9494);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 54px;
    font-weight: 800;
    max-width: 50%;
}
#SearchCreate{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
input {
    background-color: #EFEFEF;
    border: none;
    padding: 12px 6px;
    font-size: 0.9rem;
    border-radius: 6px;
    width: 25%;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    outline: none;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
#SearchCreate > button{
    font-size: 1rem;
    background-color:#5C3E94;
    display: flex;
    gap:2px;
    border: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius:10px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
section{
    display: flex;
    flex-wrap: wrap;
    gap:10px 28px;
}
h2{
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 8px;
    color: #5C0F88;
}
#SearchCreate > button:hover{
    background-color: hsl(261 41 21);
    cursor: pointer;
    transition: background-color 2s;
}
input:focus{
    border: solid 1px #5C3E94;
}
.Shopitem{
    background-color: #EFEFEF;
    width: 200px;
    height: 220px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 20px;
}
.ClassifierImage > img{
    width: 70px;
    height: 70px;
}
.ClassifierImageLink > img{
    width: 20px;
    height: 20px;
}
section{
    margin-bottom: 24px;
}
.Link{
    display: flex;
    align-items: center;    
    background-color: #EFEFEF;
    width: 400px;
    height: 20px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 20px;
}
.Link > a{
    display: flex;
    color: #5C0F88;
    align-items: center;
    gap: 8px;
}
.Link p{
    width: 100%;
}
.Link:hover{
    cursor: pointer;
}
.downloadButton{
    width: 100%;
    display: flex;
    justify-content: end;
}
.Shopitem > .downloadButton > a > button{
    font-size: 1rem;
    background-color:#5C3E94;
    display: flex;
    gap:2px;
    border: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius:10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    text-align: center;
    font-family: "Poppins", sans-serif;
}