body {
    background-color: orange;
    background-image: url('https://textures.neocities.org/textures/wood/N013.JPG');
    }

#mall {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    }

.store {
    background-color: #FF0;
    border: 2px #880 solid;
    width:450px;
    height:450px;
    margin:5px;
    padding:10px;
    overflow-x:hidden;
    }
    
.unoccupied {
    background-color: #fff;
    border: 1px #000 solid;
    }

#larvapuppyshop {
    border: 1px #26734d solid;
    border-radius:5px;
    background-image: url('https://ftp.melonland.net/larvapuppy/treecartoon.gif');
    background-color: #fff;
    color:#26734d;
    font-family:courier;
}

#larvapuppyshop h3 {
     border: 1px #26734d dashed;
    background-color:#b3f0ff;
    padding: 5px;
    margin:0;
    text-align:center;
}

#larvapuppyshop h3, #larvapuppyshop h4, #larvapuppyshop a {
	text-shadow:none;
}

#hairdresser {
     background-color: #ffccff;
     border: 3px #c059c0 dotted;
}


#tuffycheeseshop {
background-color: #yellow;
border: 2px solid #00ff00;
animation: blink-glow 1s ease-in-out infinite;
}

@keyframes tuffborder {
0%, 100% {
border-color: #00ff00;
box-shadow: 0 0 5px #00ff00;
}
50% {
border-color: transparent;
box-shadow: none;
}
}



