/* 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;
    right: 10px;
	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;
    color: white;
	font-weight: 100;
	cursor: crosshair;
}

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

#click {
    position: fixed;
    right: 10%;
    bottom: 30%;
    background-color: white;
    padding: 5px;
    border: 0.5px solid #1e1e1e;
}

/* text */
.text {
    width: 50px;
    aspect-ratio: 1/1;
    border: 1px solid #1e1e1e;
    position: fixed;
    right: 10px;
    top: 30%;
    text-align: center;
	font-family: "Lexend", sans-serif;
	font-size: 40px;
	font-weight: 100;
    cursor: zoom-in;
}
article {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 27%;
    left: 6%;
    font-size: 28px;
    line-height: 15px;
    gap: 1rem;
    background-color: white;
    border: 1px solid #1e1e1e;
    padding: 0 10px;
}
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: 85%;
    background-image: url(/studio/02_elastic-collection/media/1-.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
}

/* line */
.line {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    border: 0.5px solid #1e1e1e;
    font-size: 17px;
    line-height: 1.3em;
    padding-bottom: 5px;
}





@media only screen and (max-width: 600px) {
    .clickable-div {
        top: 25%;
        width: 90%;
        left: 5%;
    }
    #title {
        top: 0;
        left: 0;
        width: 100%;
        border: none;
    }
    #shuffle {
        top: 61%;
        left: 5%;
        width: 40px;
    }
    #click {
        bottom: 35%;
        right: 2.5%;
    }
    .text {
        display: none;
    }
    article {
        bottom: 78%;
        left: 0;
        display: flex;
        flex-direction: row;
        width: 100%;
        font-size: 14px;
        border: none;
        padding: 0 16px;
        background-color: transparent;
    }
    .Title {
        font-size: small;
        font-weight: 600;
    }
    .Content {
        font-weight: 200;
        line-height: 25px;
    }
    .line {
        padding-bottom: 20%;
        font-size: 20px;
    }
    .line p {
        margin: 2% 5%;
    }
}