:root {
  --FLIblue: rgb(24,62,109);
  --FLIgrey: rgb(216,225,232);
    --FLIlightblue: rgb(225,232,239);
  --background-select: linear-gradient(to left, #34495e 3rem, #2c3e50 3rem);
}

@font-face {
  font-family: 'Aptos';
  src: url('../Aptos-Display.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Aptos';
}

* {
    box-sizing: border-box;
}

.shopIntro {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 48px;
    color: black;
    padding-bottom: 50px;
    padding-top: 50px;
}

.shopWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    justify-content: center;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
}



.shopImg {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

.shopImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.shopText {
    color: black;
    font-size: 24px;
    text-decoration: none;
}
