/* Ensure the page takes the full height of the viewport */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Navigation bar styles */
nav {
    display: flex;
    background-color: hotpink;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/* Shirts and skateboards container */
.pics-container  {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.tshirts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    object-fit: contain;
    gap: 30px;
    justify-content: center;
}

.tshirts img {
    width: 25%;
    border-radius: 15px;
    border: 1px solid white;
    box-shadow: 0 4px 6px hotpink;
    transition: transform 0.15s ease;
}

.tshirts img:hover {
    transform: scale(1.1);
}

/* Heading styles */
.pics-container h2 {
    margin-bottom: 2vw;
    color: hotpink;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 100;
    font-size: 50px;
    padding: 1px;
}

/* Footer styles */
footer {
    flex-shrink: 0;
    background-color: hotpink;
    text-align: center;
    padding: 10px;
    color: black;
    margin-top: 5vw;
}

/* Ensure the main content takes the available space */
body > *:not(footer) {
    flex-grow: 1;
}

/* General body background */
body {
    background-color: black;
}
