@font-face {
  font-family: "rainyhearts";
  src: url("https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf") format("truetype");
}

@font-face {
  font-family: "winkle";
  src: url("https://dl.dropbox.com/s/mes7b666uvig5wc/Winkle-Regular.otf") format("truetype");
}

@font-face {
  font-family: "bubbly";
  src: url("https://angeliic.neocities.org/Bubbly-Regular.otf") format("opentype");
}

html {
  height: 100%;
  overflow-y: auto;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "bubbly";
  background-image: url("https://i.pinimg.com/736x/a1/7f/a9/a17fa906ee8de76212ded6b350669393.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 32px;
  box-sizing: border-box;
}

.site {
  width: 1100px;
  max-width: 95%;
  margin: 24px auto;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.box {
  background: rgba(255, 240, 247, 0.85);
  border: 2px dashed rgba(255, 144, 187, 0.4);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header {
  text-align: center;
  margin-bottom: 18px;
}

.header h1 {
  font-family: "rainyhearts";
  font-size: 36px;
  margin: 20px 0;
  color: #4a3b3b;
}

.header h1 a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.header h1 a:hover,
.header h1 a:focus {
  color: #4a3b3b;
  text-decoration: none;
  transform: scale(1.1);
}

.container {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 18px;
  align-items: start;
}

.left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left li {
  padding: 6px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
}

.left li:last-child {
  border-bottom: none;
}

.left a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 4px 2px;
  font-family: "rainyhearts";
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.left a:hover,
.left a:focus {
  color: #ff90bb;
  text-decoration: none;
  outline: none;
}

.center {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-me {
  display: block;
  box-sizing: border-box;
  font-family: "rainyhearts";
  font-size: 28px;
  margin: 12px;
  color: #4a3b3b;
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
}

.intro p {
  margin: 12px;
  color: #7a5a6f;
}

.right.box {
  padding: 14px;
  margin: 0;
  box-sizing: border-box;
}

.right h3 {
  margin: 12px 0 8px;
  padding-bottom: 8px;
  font-family: "rainyhearts";
  font-size: 20px;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 0 12px;
}

.track-title {
  margin: 0 0 12px;
  font-size: 13px;
  color: #7a5a6f;
}

.player-btn {
  border: none;
  background: transparent;
  color: #7a4d64;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0;
  line-height: 1;
  text-shadow:
    1px 0 0 #7a4d64,
    0 1px 0 #7a4d64,
    1px 1px 0 #7a4d64;
  transition: text-shadow 0.1s ease;
  padding: 0;
  width: 42px;
  min-width: 42px;
  height: 42px;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
}

.player-btn:hover,
.player-btn:focus {
  outline: none;
  text-shadow:
    1px 0 0 #7a4d64,
    0 1px 0 #7a4d64,
    1px 1px 0 #7a4d64;
}

.play-btn {
  width: auto;
}

.play-btn {
  width: auto;
}

.music-audio {
  display: none;
}

.footer {
  margin-top: 18px;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 820px) {
  body {
    justify-content: flex-start;
    padding: 16px 12px 24px;
  }

  .site {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 16px;
  }

  .container {
    grid-template-columns: 1fr;
  }
}
