body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
    background-image: url('../images/assets/sticktheplanet-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.banner {
    background-color: rgba(198, 0, 0, 0.739); /* Slightly transparent for readability */
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%; /* Ensures banner spans full width */
    box-sizing: border-box; /* Includes padding in width calculation */
    padding: 0rem 0; /* Reduced padding to minimize extra space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner img {
    width: 100%; /* Scales image to full width of container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes inline spacing */
    margin: 0 auto; /* Centers the image */
}
.banner-text {
    margin-top: 0rem; /* Space between image and text */
    text-align: left;
    align-self: flex-end;
    width: 100%;
}
.links-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
a {
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
a:hover {
    background-color: #0056b3;
}
a.etsy {
    background-color: #f1641e; /* Etsy Orange */
}
a.etsy:hover {
    background-color: #d35400; /* Darker Etsy Orange for hover */
}
