@charset "UTF-8";

/* BACKGROUND */
html {
    background-color: rgb(71, 71, 71);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative; }
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
	transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background-image: url("/img/background/monophonic-guitar-logo-background.svg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
	pointer-events: none;
    z-index: -1; }


/* HEADER */
.header-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
.header-container img {
    display: block; }


/* PICK LOGO ICON */
.pick-logo-icon {
	width: 100%;
    max-width: 960px;
	margin: 0 auto; }
.pick-logo-icon img {
    display: block; }
.pick-logo-icon:hover {
    opacity: 0.5; }


/* INDEX CONTAINER */
.index-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
.index-container img {
    display: block;
    width: 100%;
    height: auto; }


/* EBOOK COVER */
.ebook-volume-1-cover-container {
    position: relative;
    display: inline-block; 
    left: 50%;
    transform: translateX(-52.5%);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.75)); }
.ebook-volume-1-cover-container img {
    width: 50vw;
    max-width: 440px; }


/* LINK OPACITY */
.link-opacity:hover {
    opacity: 0.5; }


/* FOOTER */
.footer-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
.footer-container img {
    display: block; }
.footer-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 16px); }
.footer-icons img {
    width: clamp(24px, 7.5vw, 56px);
    object-fit: contain;
    height: auto; }
.footer-icons img:hover {
	opacity: 0.5; }