/* style.css */
body {
  margin: 0;
  background-color: #dedede;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #000;
}

.window {
  background: #fff;
  border: 2px solid #000;
  box-shadow: 4px 4px #999;
  margin: 1rem;
  max-width: 400px;
  position: relative;
}

.title-bar {
  background: #e3abb1;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #aaa;
}

.controls span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #000;
  margin-left: 4px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  align-items: center;
}

.top-bar .socials i,
.top-bar .auth {
  margin-left: 10px;
}

.section {
  margin: 1rem auto;
}

.content {
  padding: 10px;
  background: #fff;
}

h1 {
  font-size: 28px;
  text-align: center;
  color: #333;
}

.arrived {
  color: #e3abb1;
  opacity: 0.3;
  margin-left: 10px;
}

.welcome {
  font-size: 24px;
  color: #cb416b;
  font-weight: bold;
  margin-left: 1rem;
}

.photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.green-dog {
  width: 100px;
  height: auto;
  border: 2px solid #000;
}

.caption {
  background: #000;
  color: #ffd1df;
  padding: 5px 10px;
  margin: 0.5rem 0;
}

.arrow {
  width: 80px;
  height: auto;
}

.section-title {
  text-align: center;
  font-size: 20px;
  color: #cb416b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.green-cat {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  padding: 0 1rem 2rem;
}

.music-grid img {
  width: 100%;
  height: auto;
  border: 2px solid #000;
}

.icons {
  display: flex;
  justify-content: space-around;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.icon img {
  width: 40px;
  height: 40px;
}

.icon p {
  background: #000;
  color: #fff;
  padding: 2px 6px;
  margin-top: 5px;
  font-size: 14px;
}

.send-btn {
  background: #ffe3ed;
  border: 1px solid #e3abb1;
  padding: 10px;
  text-align: center;
  color: #cb416b;
  margin-top: 10px;
}

.fake-paint {
  background: #fff0f5;
  border: 2px solid #e3abb1;
  padding: 1rem;
  text-align: center;
}
