body {
    background-color: #e8e8e8;
    font-family: "Poppins Medium", sans-serif;
    perspective: 100px;
}

.hero {
    text-align: center;
    color: salmon;
    text-shadow: 2px 2px 5px darksalmon;
}

main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


.wrapper {
    transform-style: preserve-3d;
    width: 265px;
    height: 344px;
    display: block;
    border: none;  
    object-fit: contain;  
    position: relative;
    margin: 8px 12px;
    border-radius: 10px;
    background-color: #c4c4c4;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    box-shadow: 2px 2px 50px rgba(0, 0, 0,  0.8);
    cursor: pointer;
}

.wrapper:hover {
    transform: scale(1.05);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.dude {
    background-image: url("/images/dude.jpeg");
}
.lady {
    background-image: url("/images/lady.jpeg");
}
.girl {
    background-image: url("/images/girl.jpeg");
}
.eyes {
    background-image: url("/images/eyes.jpeg");
}
.boss {
    background-image: url("/images/boss.jpeg");
}
.smart {
    background-image: url("/images/smart.jpeg");
}
.neon {
    background-image: url("/images/neon.jpeg");
}
.nature {
    background-image: url("/images/nature.jpeg");
}
.hair {
    background-image: url("/images/hair.jpeg");
}
.surreal {
    background-image: url("/images/surreal.jpeg");
}
.shy {
    background-image: url("/images/shy.jpeg");
}

.youtube { color: #ff0000;}
.linkedin { color: #0a66c2;}
.facebook { color: #3b5998;}
.twitter { color: #00aced;}
.wechat { color: #7bb32e;}
.intagram { color: #c32aa3;}
.tiktok { color: #69c9d0;}
.pinterest { color: #bd081c;}
.snapchat { color: #fffc00;}
.reddit { color: #ff4500;}


img {
    width: 100%;
}

.text-container {
    color: salmon;
    position: absolute;
    display: block;
    height: 27%;
    bottom: 0;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    border: none;
    width: 93%;
    text-align: center;
    background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
    /* padding: 24px 36px; */
}

.text-container h4 {
    font-size: large;
    padding: 0;
    margin: 6px 0;
    text-shadow: 2px 2px 5px rebeccapurple;
}

.text-container p {
    font-size: x-small;
    margin: 5px;
    color: #aaa;
}

.text-container h5 {
    font-size: smaller;
    padding: 0;
    margin: 4px 0;
}

footer {
    background-color: #666;
    text-align: center;
    margin-top: 3rem;
    width: 100%;
    color: aquamarine;
}

footer p {
    line-height: 3rem;
    font-size: x-small;
}

footer a {
    text-decoration: none;
    color: aquamarine;
}

footer a:hover {
    color: salmon;
}