@import url(https://fonts.bunny.net/css?family=actor:400);
body {
  font-family: "Actor", Arial, sans-serif;
  font-size: 18px;
  background: #faf3ef;
  color: #333;
  margin: 0;
  padding: 0;
}

.grow {
  transition: all 0.2s ease-in-out;
}
.grow:hover {
  transform: scale(1.1);
}

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

.l {
  float: left;
  margin-right: 15px;
}

.r {
  float: right;
  margin-left: 15px;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #8d3c47;
  color: white;
  border-radius: 10px;
}
header .headerTitle {
  font-size: 24px;
  font-weight: bold;
}
header .headerLinks {
  display: flex;
  gap: 10px;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  background: #f7d6c1;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.col {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}
.col .projectTitle {
  font-size: 24px;
  font-weight: bold;
  color: #b04a5a;
  margin-bottom: 10px;
}

.links .song, .links .video {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.links .song.loud, .links .video.loud {
  border: 1px solid rgb(162, 27, 27);
}
.links .songTitle {
  font-size: 18px;
  font-weight: bold;
  color: #b04a5a;
}

.credits {
  font-size: 14px;
  color: black;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #8d3c47;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
}
.footer p {
  display: block;
}

header a, .footer a {
  color: #fff;
  text-decoration: none;
  transition: text-shadow 0.3s ease-in-out;
}
header a:hover, .footer a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.audio-widget audio {
  width: 100%;
  max-width: 100%;
  min-width: 200px;
}

#blocker, #gallery {
  display: none;
}

@media (max-width: 360px) {
  img {
    display: block;
  }
  .container {
    padding: 2px;
  }
  .l, .r {
    float: none;
  }
}

/*# sourceMappingURL=dgf-main.css.map */
