@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wdth,wght@75..150,200..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #010101;
  color: #2AAD3D;
  font-family:'Inconsolata', Arial, sans-serif;
  font-variation-settings: 'wdth' 150;
  font-size: 15px;
  padding: 40px;
  max-width: 620px;
  line-height: 1.7;
}

.arrowanime {
  position: relative;
  color: #eceff4;
  text-decoration: none;
  padding-right: 20px;
}

.arrowanime::after {
  content: "←";
  position: absolute;
  right: 0;
  color: #eceff4;
  opacity: 0;
  transition: 0.2s;
}

.arrowanime:hover::after {
  opacity: 1;
  color: #2AAD3D;
  right: -15px; /* distance from text*/
}

a {
  color: #eceff4;
  text-decoration: none;
}

a:hover {
  color: #2AAD3D;
  text-decoration: underline;
}

/* --- MAIN PAGE --- */

.site-header-img {
  width: 280px;
  display: block;
  transform: rotate(-90deg);
  transform-origin: center center;
  margin-top: -40px;
  margin-bottom: 6px;
}

.site-title {
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

section {
  margin-bottom: 32px;
}

.label {
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.02em;

}

ul {
  color: #2AAD3D;
  list-style: none;
  padding: 0;
  margin-left: 12px;
}

ul li {
  margin-bottom: 2px;
  font-size: 13px;
  color: #2AAD3D;
}
/* this break constantly this should be "  color: #2AAD3D;" for green*/
ul li a:hover {
  color: #2AAD3D;
  text-decoration: underline;
}

.contact a {
  font-size: 13px;
}

/* --- SUBPAGES --- */

.back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.back:hover {
  text-decoration: underline;
}

.release-cover {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.release-cover-placeholder {
  width: 180px;
  height: 180px;
  background: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

.release-title {
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.release-type {
  font-size: 15px;
  color: #fffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.release-link {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.release-link:hover {
  text-decoration: underline;
}

.credits-label {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.credits-list {
  list-style: none;
  padding: 0;
  margin-left: 12px;
}

.credits-list li {
  font-size: 15px;
  margin-bottom: 2px;
}