/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

.roboto-slab-200 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

:root {
  background: linear-gradient(rgba(99, 12, 92, 0.8), rgba(12, 6, 71, 0.8)) no-repeat center center fixed;
  background-size: cover;
}

body {
  font-family: 'Clash Display', sans-serif;
  margin: 2em 1em;
  padding: 2em 0em;
  background-color: #f5f5f5;
  color: #000;
  -webkit-text-stroke: 0.5px white;
  text-align: center;

  background: linear-gradient(rgba(99, 12, 92, 0.8), rgba(12, 6, 71, 0.8)) no-repeat center center fixed;
  background-size: cover;

  backdrop-filter: blur(2px) saturate(180%);
  border-radius: 4em 2em;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

p {
  -webkit-text-stroke: 0.1px;
  margin-bottom: 3em;
}

a {
  color: #78aeff
}

button {
  font-family: "Roboto Slab", serif;

  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;

  -webkit-text-stroke: 0px;
  color: white;
}

footer:not(p) {
  margin-top: 4em;
}

footer p {
  margin-top: -1.8em;
  font-size: 0.75em;

  -webkit-text-stroke: 0px;
  color: white;
}

.header-text {
  font-size: 1.5em;
  margin-top: -0.5em;
}

.coming-soon-text {
  font-size: 0.75rem;
  color: lightgray;

  position: absolute;
  bottom: 1rem;
  left: 3rem;
}

#spotify-login,
#apple-login {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 0rem 3rem;
  font-size: 1.5em;
  margin: 1em;
  border: none;

  cursor: pointer;
}

/* Disallow clicking and fix padding */
#apple-login {
  opacity: 0.5;
  cursor: not-allowed;

  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

#spotify-login:hover,
#apple-login:hover {
  background: rgba(255, 255, 255, 0.25);
}

#spotify-logo,
#apple-logo {
  width: 5em;
  margin: 1rem;
}

#logo {
  width: 2.2em;
  position: relative;
  top: 15px;
}

#return-button {
  display: inline;
  position: relative;
  bottom: 0.25em;
  left: 0.2em;
  font-size: 1em;
}

#return-button-div {
  position: fixed;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);

  color: pink;
}

#return-button-div img {
  width: 1em;
}

#unfinished {
  font-size: 1.2em;
  margin-top: -0.5em;

  -webkit-text-stroke: 0px;
  color: white;
}

#login-uri {
  -webkit-text-stroke: 0px;
  color: lightgrey;
}

/*

*/

/* Transformations, shadows, and extra filters */
button {
  box-shadow: 6px 12px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px) saturate(280%);
}

#apple-login {
  box-shadow: -6px 12px 15px rgba(0, 0, 0, 0.2);
}

p,
h1 {
  filter: drop-shadow(10px 5px 1px rgba(0, 0, 0, 0.3));
}

#logo {
  filter: drop-shadow(10px 15px 3px rgba(0, 0, 0, 0.5));
}

/* Shrink buttons if zoom is too high */
@media (max-width: 400px) {
  h1 {
    font-size: 3rem;
  }

  button {
    align-items: center;
    flex-direction: column;
  }

  button span {
    padding-top: 0.5rem;
  }

  #spotify-logo,
  #apple-logo {
    width: 3.5em;
  }
}