@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background: #F6FBFD;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 4rem auto;
    width: 90%;
}

h2 {
    color: violet;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.3rem;
}

.menu {
    margin: 1.5rem 0;
}

.menu a {
    font-size: 1.1 re, ;
    font-family: 'Mouse Memoirs', sans-serif;
    text-decoration: none;
    margin: 0 1.5rem;
    background-color: rgb(0, 255, 204);
    color: rgb(0, 0, 0);
    padding: 8px 22px;
}
.menu-1 {
    margin: 1.5rem 0;
}

.menu-1 a {
    font-size: 1.1 re, ;
    font-family: 'Mouse Memoirs', sans-serif;
    text-decoration: none;
    margin: 0 1.5rem;
    background-color: yellow;
    color: #000;
    padding: 8px 22px;
}

.box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;

}
.store-item{
    width: 300px;
    padding: 1rem;
}
.store-item img{
    width: 100%;
    display: block;
    box-shadow: 7x 7x 20px rgba(0,0,0,0.2);
}
.add-border{
    border: 2px solid black;
}