/* Variables declared here - these are the colors for our pages, as well as the font stacks and sizes. */

:root {
  --black: #171321;
  --dkblue: #0d314b;
  --dkgreen: #073802;
  --lightblue: #3794d6;
  --lightblue2: #2a71a3;
  --plum: #4b0d49;
  --hotmag: #ff17e4;
  --magenta: #e310cb;
  --aqua: #86fbfb;
  --white: #f7f8fa;
  --mono: "Oxygen mono", monospace;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  /* margin: 30px; */
  background-color: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
}

nav {
  padding: 0;
  margin: 0;
  top: 0;
  width: 100%;
  display: block;
  text-decoration: none;
}

a {
  font-size: 5vw;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  color: var(--aqua);
}

nav a:hover {
  color: white;
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

h1 {
  color: #32c4c4;
  align-items: center;
  font-family: "Rubik", sans-serif;
  text-decoration: underline;
  font-size: 5vw;
}

h2 {
  color: #239191;
  font-family: "Rubik", sans-serif;
  font-size: 10vw;
}

a:hover {
  color: var(--lightblue2);
  text-decoration: none;
}

.controllers {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#play,
#stop,
#next {
  width: 90%;
}

img {
  width: 100%;
}

.go2top {
  height: 50px;
  width: 50px;
  padding: 10px;
  border-radius: 5px;
  opacity: 50%;
  background-color: white;
  border: 1px solid white;
  color: black;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-weight: 1000;
}

#station {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#station * {
  color: papayawhip;
}

#station p {
  font-size: 5vw;
}

#station a {
  font-size: 3vw;
  text-decoration: none;
}

#station a:hover {
  color: white;
  text-decoration: underline;
}

.go2top:hover {
  opacity: 70%;
}
/* @media (min-width: 600px) {} */
/* @media (min-width: 850px) { */

@media (min-width: 600px) {
  a {
    font-size: 30px;
  }
  .wrapper {
    max-width: 1200px;
    width: 900px;
    height: 100vh;
  }
  h1 {
    font-size: 4vh;
  }
  .controllers {
    width: 30%;
    height: 500px;
  }
  #station p {
    font-size: 3vh;
  }
  #station a {
    font-size: 2.5vh;
  }
}
