/* Song Search - Copyright (C) 2021 Christian Bolik */

:root {
  /* color palettes: https://www.colorsandfonts.com/color-palettes */

  /* --banner-color: lightcoral;
  --song-color: lightyellow;
  --artist-color: rgb(164, 235, 164);
  --album-color: lightblue;
  --background-color: rgb(75, 75, 75);
  --button-color: rgb(210, 210, 210); */

  --banner-color: #6b7b8e;
  --song-color: #8fbbaf;
  --artist-color: #acdeaa;
  --album-color: #d6f8b8;
  --background-color: #4b5b6e;
  --button-color: rgb(190, 190, 190);
  color: white;
}

body {
  margin: auto 0;
  background-color: var(--background-color);
}

.copyright {
  margin: 8px;
  color: white;
  font-size: 0.8em;
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
}

.copyright a {
  color: white;
}

.banner {
  width: 100%;
  height: 100px;
  margin: 0px;
  background-color: var(--banner-color);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  font-size: 2em;
}

.banner img {
  width: 2em;
  height: auto;
  margin-right: 0.5em;
}

.banner .buttons {
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin: 8px;
}

.banner input[type="button"] {
  padding: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  border-radius: 2px;
  border-width: thin;
  background-color: var(--button-color);
  color: black;
  cursor: pointer;
}

.banner h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 72px;
  color: white;
  -webkit-text-stroke: 2px rgb(20, 20, 20);
  text-transform: uppercase;
}

#current_title {
  color: white;
}

.icon {
  vertical-align: middle;
}

.icon-link {
  color: white; /* Set the color to white */
  text-decoration: none; /* Remove underline */
}

.icon-link:hover {
  cursor: pointer; /* Change cursor on hover to indicate clickable */
}

ul img {
  margin-top: 8px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  .banner {
    height: 40px;
  }
  .banner h1 {
    font-size: 32px;
  }
  .banner img {
    width: 32px;
    margin-right: 8px;
  }
}

/* Special media query for iPad in portrait */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
}