@font-face {
    font-family: pixellari;
    src: url("https://moon-elxna.github.io/dressup-cat/assets/font/Pixellari.ttf");
}

body{
    background-color: #8cbde3ff;
    background-image: linear-gradient(90deg, #7ec8afff, #8cbde3ff);
    display: flex;
    justify-content: center;
    align-items: center;  
}

body > div{
    background-color: #FFFCF8;
    border-radius: 24px;
}

button {
    border-radius: 4px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

button:hover {
    transform: scale(1.1);
}

button:active {
    background-color: rgba(0, 0, 0, 0.221);
}

button.selected {
    background-color: rgba(0, 0, 0, 0.098);
}


#header p{
    font-family: "pixellari";
    color: #081621;
    text-align: center;
    font-size: 32px;
    margin: 16px;
}

hr {
  border: none;
  height: 2px;
  background: #081621;
}

#content{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;   
    padding: 12px;
    gap: 24px;
}

#content p {
    font-family: "pixellari";
    color: #081621;
    font-size: 24px;
    margin: 8px;
}

#content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#dressup{
    display: flex;
    justify-content: center;
    align-items: center;
}

#dressup > div{
    position: relative;
    width: 384px;
    height: 384px;  
}

#tools > button {
    background-color: #8cbde3ff;
    margin: 0px;
    padding: 0px;
}

.showcase_img{
    display: flex;
    gap: 16px
}

#dressup img{
    position: absolute;
    width: 384px;
    height: auto;
}

#accessories {
    z-index: 40;
}

#top{
    z-index: 30;
}

#bottom {
    z-index: 20;
}

#body{
    z-index: 10;
}

.showcase{
    display: flex;
    flex-direction: row;
}

.showcase_img{
    display: flex;
    flex-direction: row;
}

.arrow{
    width: 48px;
}

img.showcase_clothes{
    width: 120px;
}

button.showcase_clothes{
    width: fit-content ;
    height: fit-content;
}

@media(max-width: 1100px){
    #content{
        flex-direction: column;
        gap: 12px;
    }
    
}