

:root {
    --light: #ffffff;
    --medium: #808080;
    --dark: #000000;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: MS PGothic, sans-serif;
    text-align: center;
    font-size: 17px;
}

.container {
    width: 1000px;
    background: linear-gradient(
      180deg,
      hsl(0deg 0% 45%) 0%,
      hsl(344deg 0% 43%) 0%,
      hsl(344deg 0% 41%) 0%,
      hsl(344deg 0% 39%) 0%,
      hsl(344deg 0% 37%) 0%,
      hsl(344deg 0% 35%) 0%,
      hsl(344deg 0% 34%) 0%,
      hsl(344deg 0% 32%) 0%,
      hsl(344deg 0% 30%) 0%,
      hsl(344deg 0% 28%) 0%,
      hsl(344deg 0% 26%) 0%,
      hsl(344deg 0% 24%) 1%,
      hsl(344deg 0% 23%) 1%,
      hsl(344deg 0% 21%) 2%,
      hsl(344deg 0% 19%) 3%,
      hsl(344deg 0% 17%) 5%,
      hsl(344deg 0% 16%) 6%,
      hsl(344deg 0% 14%) 9%,
      hsl(344deg 0% 12%) 12%,
      hsl(344deg 0% 11%) 16%,
      hsl(343deg 0% 9%) 21%,
      hsl(343deg 0% 8%) 28%,
      hsl(343deg 0% 6%) 39%,
      hsl(343deg 0% 3%) 58%,
      hsl(0deg 0% 0%) 100%
    );
    color: var(--light);
    padding: 20px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.container p a {
    position: relative;
    color: var(--light);
    font-weight: bold;
    transition: 0.3s ease;

  }

  .heading {
    display: flex;
    align-items: end;
  }
  
h1,h2,h3,h4,h5,h6 {
    margin-top: 5px;
    margin-bottom: 1px;
    font-family: MS PGothic, sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  width: 100%;
  background-color: white;
  color: black;
}

.demosongs {
  display: flex;
  gap: 10px;
}

.demosongs img {
  width: 70px;
}

ul {
  margin: 0;

}

h1.yell {
  filter: drop-shadow(#F08D28 1.5px 1.5px 0) drop-shadow(#F08D28 -1.5px 1.5px 0) drop-shadow(#F08D28 -1.5px -1.5px 0) drop-shadow(#F08D28 1.5px -1.5px 0);
}

h1.tear {
  filter: drop-shadow(#5E4EBB 1.5px 1.5px 0) drop-shadow(#5E4EBB -1.5px 1.5px 0) drop-shadow(#5E4EBB -1.5px -1.5px 0) drop-shadow(#5E4EBB 1.5px -1.5px 0);
}

::selection {
    color: var(--dark);
    background-color: var(--light);
}

.footer a {
    position: relative;
    color: var(--light);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
  }

  
  .footer a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .footer a:hover::before {
    transform: scaleX(1);
  }
  
.roster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}

.roster img {
  border-radius: 20px;
  filter: drop-shadow(var(--light) 1.5px 1.5px 0) drop-shadow(var(--light) -1.5px 1.5px 0) drop-shadow(var(--light) -1.5px -1.5px 0) drop-shadow(var(--light) 1.5px -1.5px 0);
  width: 250px;
}

.voicebanks {
  flex-direction: column;
}


.description {
  width: 60%;
  text-align: left;
}

.standing {
  filter: drop-shadow(var(--light) 1.5px 1.5px 0) drop-shadow(var(--light) -1.5px 1.5px 0) drop-shadow(var(--light) -1.5px -1.5px 0) drop-shadow(var(--light) 1.5px -1.5px 0);
}

span.jpn{
  font-family: Arial, sans-serif;
}

table {
  border-collapse: collapse;
}

td, tr {
  border: 1.5px solid #808080;
  padding: 6px;
}