* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('jane.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* display: flex;
    align-items: flex-start;
    justify-content: center; */
    display: block;
}

/* Mobile: fullscreen background */
@media (max-width: 768px) {
    .background-container {
        background-size: cover;
    }
}

/* Larger screens: max size background */
@media (min-width: 769px) {
    .background-container {
        background-size: contain;
        background-color: #000;
    }
}

.content {
    /* position: relative; */
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 18%;   /* vertical position as % of container height */
    left: 50%;  /* horizontal position as % of container width */
    transform: translate(-50%, -50%);
}

.soundcloud-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.soundcloud-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* .soundcloud-link:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
} */

.soundcloud-text {
    font-size: 1.05rem;
    color: #FFC9CD;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.soundcloud-icon {
    width: 120px;
    height: 120px;
    color: #FFC9CD;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}

/* @media (min-width: 769px) {
    .soundcloud-icon {
        width: 120px;
        height: 120px;
    }
} */
