@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  --pink-theme-color: #CA154D;
  --pink-theme-color-alt: #DD52A7;

  margin: 0;
  padding: 0;
  
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  
  color: white;
  
  height: 100vh;
  display: grid;
  grid-template-areas:
    "header"
    "contents";
    
  grid-template-rows: auto 1fr;
}

header {
  --darker-color: var(--pink-theme-color);
  --lighter-color: var(--pink-theme-color-alt);
  color: white;
  background: linear-gradient(-0.3turn, var(--lighter-color), var(--darker-color));
  
  grid-area: header;
    
  display: flex;
  padding: 0 10px;
}

header h1 {
  font-size: 26px;
}

main {
  --darker-color: #00003B;
  --lighter-color: #1C2853;
  
  background: linear-gradient(-0.3turn, var(--lighter-color), var(--darker-color));
    
  grid-area: contents;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow-y: scroll;
}

sound-selection {
  height: 100%;
  width: 100%;
  max-width: 800px;
}

