canvas {
  position: absolute;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* scrollbar */
::-webkit-scrollbar {
  display: none;
}

body {
  /* retro orange background */
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.logo-small {
  width: 100%;
}

.logo-big {
  width: 80vw;
  margin: 0 25px;
}

.logo-sub {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.login-button-text {
  text-align: center;
  font-size: 16px;
}

#login-btn {
  /* spotify style logn button */
  background-color: #1DB954;
  border: 2px solid black;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  margin: 10px;
  /* hard box shadow */
  box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.75);
  border-radius: 50px;
}

#login-btn:hover {
  background-color: #139942;
  transform: translate(2px , 2px);
  box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.75);
}

.top-card h3 {
  font-size: 25px;
  margin-top: 5px;
} 

/* desktop break */
@media (min-width: 768px) {
  .logo-big {
    height: 200px;
  }

  .logo-sub {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  #login-btn {
    font-size: 20px;
    padding: 10px 40px;
    margin: 10px auto;
  }

  main {
    min-width: 750px;
  }
}

