@import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap');

/* LOOOOOOOOONG DOG */
body {
  background-color: #2b2b2b;
  background-image: url('/long-dog.jpg');
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-family: 'Reddit Mono', monospace;
  font-weight: 400;
  font-style: normal;
  /*font-family: monospace;*/
  min-height: calc(100vh - 40px);
  margin: 0;
  padding: 0;
}

#content {
  background: linear-gradient(45deg, rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.9));
  border: 1px dotted #d3d3d3;
  padding: 20px;
  margin: 20px 20px;
  width: calc(100% - 80px);
  opacity: 1;
  animation: fadeIn linear 0.6s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1 {
  font-size: 46px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 5px;
}

h2 {
  font-size: 22px;
  color: #d3d3d3;
  font-weight: normal;
  margin-top: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #d3d3d3;
}


ul, li, p, a {
  font-size: 28px;
}

ul, li {
  margin-left: 0;
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

li {
  margin-bottom: 24px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

a > span {
  border-bottom: 1px dotted white;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #ff0000;
}

a > span:hover, a > span:focus, a > span:active {
  border-bottom-color: red;
}

a > i {
  color: #ffffff;
  display: inline-block !important;
  animation: fadeIn linear 0.5s;
  width: 20px;
}

a > span {
  display: inline-block;
}

.tidal-icon > img {
  width: 24px;
  height: auto;
}

#bandcamp-embed {
  padding-top: 20px;
  padding-bottom: 0;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  ul, li, p, a {
    font-size: 22px;
  }
  
  #content {
    margin-bottom: 0;
  }
  
  body {
    min-height: 100px;
  }
}
