@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Syne+Mono&display=swap'); html { padding: 0; margin: 0; } body { font-family: 'Inter', sans-serif; /* background-image: linear-gradient(rgb(255, 255, 255) 50%, #8fc3ff 100%); */ margin: 0; padding: 0; overflow-x: hidden; overflow-y: hidden; } #scroll { background-image: linear-gradient(to bottom, white 0%, white 30%, rgba(255, 255, 255, 0) 100%), url('/public/images/skybox.png'); background-position: 0px calc(100vh / 2.2); background-size: cover; background-repeat: repeat-x; } p { margin: 0; } a { text-decoration: none; color: #0075FF; } hr { /* border: 0; clear:both; display:block; background-color:#0075FF; width: 100%; height: 2px; z-index: -1000; margin: 0; */ clear:both; display:block; width: 100%; margin: 0; padding: 0; border: 0; border-top: medium solid #0075FF; } #main-wrapper { display: flex; flex-direction: column; height: 100vh; overflow-y: hidden; } #nav-bar { display: flex; flex-direction: row; justify-content: space-between; padding-left: 50px; padding-right: 50px; padding-top: 40px; padding-bottom: 40px; } .nav-element { font-size: 40px; font-family: 'Syne Mono', monospace; color: #0075FF; } #main-container { padding-top: 25px; display: flex; flex-direction: column; gap: 50px; padding-bottom: 50px; padding-left: 50px; padding-right: 50px; overflow-y: scroll; box-sizing: border-box; /* Include padding in the height calculation */ } #main-text { font-size: 26px; width: 60%; line-height: 40px; color:#0075FF; } #hyperlink-container { display: flex; flex-direction: row; gap: 20px; font-size: 30px; color:#ffffff; font-weight: 400; } .hyperlink { display: flex; flex-direction: row; gap: 20px; width: fit-content; background-color: #0075FF; /* background-image: url('/public/images/dither-txt.png'); */ background-size: cover; /* or contain, depending on your preference */ /* background-position: center; */ background-repeat:repeat; border-radius: 30px; padding: 10px; padding-left: 25px; padding-right: 25px; font-family: 'Syne Mono', monospace; } #hyperlink-container a{ color: white; } #container { position: absolute; top:0px; left:0px; margin: 0; padding: 0; z-index: -999; } #list-container { display: flex; flex-wrap: wrap; align-items: stretch; row-gap: 100px; column-gap: 50px; justify-content: space-evenly; padding-top: 40px; } .list { display: flex; flex-direction: column; width: 600px; height: 500px; gap:10px; } .list-image { width: 100%; height: 500px; overflow: hidden; position: relative; border-radius: 0px; margin-bottom: 10px; } .list-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; } .list-image-overlay { position: absolute; width: calc(100% + .2rem); height: 100%; box-shadow: 0 0 .25rem .5rem white inset; } .list-title { font-size: 30px; color: #0075FF; font-weight: 600; font-family: 'Syne Mono', monospace; } .list-details { font-size: 20px; color: #0075FF; display: flex; flex-direction: row; justify-content: flex-start; row-gap: 5px; column-gap: 20px; flex-wrap: wrap; font-family: 'Syne Mono', monospace; } .list-artists { font-size: 20px; font-family: 'Syne Mono', monospace; color: #0075FF; display: flex; flex-wrap: wrap; flex-direction: row; } #page-header { display: flex; flex-direction: row; padding-top: 20px; padding-bottom: 20px; padding-left: 50px; font-size: 30px; font-family: 'Syne Mono', monospace; color: #0075FF; } /* Tablet breakpoint (768px to 1024px) */ @media (max-width: 1024px) and (min-width: 768px) { #nav-bar { padding-left: 50px; padding-right: 50px; padding-top: 20px; padding-bottom: 20px; } .nav-element { } #main-text { width: 70%; } #hyperlink-container { flex-direction: column; width: fit-content; } .hyperlink { padding-left: 5vw; width: 80%; } } /* Mobile breakpoint (less than 768px) */ @media (max-width: 768px) { #nav-bar { padding-left: 25px; padding-right: 25px; padding-top: 20px; padding-bottom: 20px; flex-direction: column; text-align: center; gap: 5px; } .nav-element { font-size: 20px; } #main-container { /* flex-direction: column-reverse; */ padding-left: 10px; padding-right: 10px; } #main-text { font-size: 18px; width: 80%; padding-left: 0px; text-align:justify; line-height: 28px; margin-left: auto; margin-right: auto; mix-blend-mode:multiply; order: 2; } #hyperlink-container { font-size: 24px; flex-direction: column; width: 100%; padding-left: 0px; align-items: normal; order: 1; } .hyperlink { gap: 10px; width: auto; justify-content: center; margin-left: 25px; margin-right: 25px; text-align: center; } #container { } #list-container { padding-left: 20px; padding-right: 20px; } }