@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

/* --- <3 --- */
/* this is what makes the website look the way it does!!! (color palette + other visual flair ex. the buttons being outlined and stuff) */
/* --- <3 --- */

/* --- regular stuff - don't touch!!! --- */
/* --- regular stuff - don't touch!!! --- */
/* --- regular stuff - don't touch!!! --- */

body {
  max-width: 1000px;
  width: 100%;
  background: #000;
  background-image: url("wallpaper.png");
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Shippori Mincho B1';
  color: #ffffff;
  margin: auto;
}

/* centered window */
.window {
  width: 80%;
  margin: 40px auto;
  background: rgba(0, 0, 0, 1);
  border: 2px dotted #db1c50;
}

/* top bar */
.topbar {
  position: relative;
  background: #000;
  padding: 40px 20px 60px 20px;
  text-align: center;
  border-bottom: 2px dotted #db1c50;
}

.nav-buttons {
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.btn-link {
  font-size: 0.85rem;
  padding: 4px 8px;
  margin-left: 6px;
}

/* content area */
.content {
  padding: 20px;
}

/* default text links */
a {
  color: #db1c50;
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* button-style links */
.btn-link {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
  font-weight: normal;
  border: thin solid #ffffff;
  padding: 5px 10px;
  display: inline-block;
}

.btn-link:hover {
  color: #000000;
  background-color: #ffffff;
  border: thin solid #ffffff;
}

/* making images fit inside of the window */
img {
    max-width: 600px;
    max-height: 600px;
}

/* deviantart stamps */

.decorations {
  text-align: center;
}

.decorations img {
  width: 99px;
  height: 56px;
  object-fit: contain;
}

/* manually placed dividers */

.divider {
  border: none;
  border-top: 2px dotted #db1c50;
  margin: 30px 0;
}

/* --- album pages - don't touch!!! --- */
/* --- album pages - don't touch!!! --- */
/* --- album pages - don't touch!!! --- */

.album-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.album-cover img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

.album-info {
    flex: 1;
    min-width: 250px;
}

.album-info h1 {
    margin-top: 0;
    margin-bottom: 15px;
}

.album-meta {
    line-height: 1.8;
}

/* --- mobile adjustments - don't touch!!! --- */
/* --- mobile adjustments - don't touch!!! --- */
/* --- mobile adjustments - don't touch!!! --- */

@media screen and (max-width: 768px) {

  body {
    padding: 10px;
    background-attachment: scroll;
  }

  .window {
    width: 95%;
    margin: 20px auto;
  }

  .topbar {
    padding: 25px 15px 25px 15px;
  }

  .nav-buttons {
    position: static;
    text-align: center;
    margin-top: 15px;
  }

  .btn-link {
    display: inline-block;
    margin: 4px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}