/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #404040;
    /* dvh ensures true vertical centering on mobile browsers */
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container {
    width: 70vw;
    height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Space between image and logo */
}

.vignette-img {
    max-width: 100%;
    max-height: 80%; /* Leaves room for the icon below */
    object-fit: contain;
    border-radius: 4px;
}

/* SoundCloud Icon Styling */
.sc-link {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7; /* Light gray effect by lowering opacity against the background */
}

.sc-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sc-icon {
    width: 60px; /* Adjust size as needed */
    height: auto;
    display: block;
}