/* setting */
html {
	font-family: sans-serif;
	cursor: crosshair;
}
body {
	user-select: none;
	color: #1e1e1e;
}

/* nav */
a {
	text-decoration: none;
	color: #1e1e1e;
}
#title {
	position: fixed;
	top: 10px;
    left: 3%;
	font-family: "Lexend", sans-serif;
	font-size: 40px;
	font-weight: 100;
	padding: 2px 6px;
	border: 1px solid #1e1e1e;
    transition: background-image 0.5s ease;
}
#title:hover {
	background-color: #1e1e1e;
	font-weight: 100;
	cursor: crosshair;
}
.inverted {
    color: white;
}

#shuffle {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    aspect-ratio: 1/1;
    background-image: url(/studio/02_elastic-collection/media/shuffle.png);
    background-size: contain;
}

#click {
    position: fixed;
    left: 48%;
    bottom: 20%;
}

/* text */
article {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 8%;
    left: 3%;
    font-size: 28px;
    line-height: 15px;
    gap: 1rem;
}
article div {
    line-height: 13px;
}
.Title {
	font-family: "Lexend", sans-serif;
    font-weight: 300;
}
.Content {
	font-family: "Lexend", sans-serif;
    font-weight: 100;
}

/* image */
.clickable-div {
    z-index: -1;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/studio/02_elastic-collection/media/1-.png);
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
}


@media only screen and (max-width: 600px){
    body {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    article {
        left: 3%;
        bottom: 1%;
        font-size: 20px;
    }
    .clickable-div {
        z-index: 1;
        position: relative;
        display: flex;
        width: 100%;
        height: 32vh;
        margin-top: 25%;
        background-size: contain;
    }
    #click {
        z-index: 2;
        position: fixed;
        left: 3%;
        bottom: 52%;
    }
    #shuffle {
        right: 3%;
        bottom: 2%;
    }
}