@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  /* outline: 1px solid red; */
}

:root {
  --paleblue: hsl(225, 100%, 94%);
  --brightblue: hsl(245, 75%, 52%);
  --vpaleblue: hsl(225, 100%, 98%);
  --desaturatedblue: hsl(224, 23%, 55%);
  --darkblue: hsl(223, 47%, 23%);
}

body {
  background: var(--paleblue) url(images/pattern-background-mobile.svg);
  background-size: cover;
  font-family: 'Red Hat Display', sans-serif;
  height: 100vh;
  width: 100vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  color: var(--desaturatedblue);
}

.card {
  width: 350px;
  min-width: 50px;
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #959494bf;
}
/* || IMAGES SECTION */
.card img {
  width: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.plan img {
  width: 40px;
}

/* || GENERAL STYLING */
.note {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

h2 {
  color: var(--darkblue);
}

.desc {
  /* font-size: 20px; */
  line-height: 25px;
}

.plan {
  background-color: var(--vpaleblue);
  display: flex;
  flex-direction: row;
  padding: 1rem;
  gap: 5rem;
  align-items: center;
  border-radius: 8px;
}

.plan .music {
  display: flex;
  gap: 1rem;
  font-weight: bold;
}
.plan span {
  color: var(--darkblue);
}

.chg {
    color: var(--brightblue);
    text-decoration: underline;
}
.cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

button {
  background-color: var(--brightblue);
  color: var(--vpaleblue);
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  border-color: transparent;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 10px 20px 2px #6363636b;
}

/* || RESPONSIVENESS */
@media screen and (min-width: 940px) {
    .card {
      min-width: 150px;
    }
    body {
        background: var(--paleblue) url(images/pattern-background-desktop.svg);
    }
  }
