* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('images/pattern-background-desktop.svg') no-repeat top, hsl(225, 100%, 94%);
    background-size: auto, cover;
    font-family: 'Red Hat Display', sans-serif; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
  background-color: white;
  width: 375px;
  border-radius: 20px;
  
}

.imagewrapper {
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
  height: 200px;
}

img.dance {
  width: 100%;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
  height: 100%;
}

h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

p.description {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0px 20px;
  color:  hsl(224, 23%, 55%);
  margin-bottom: 20px;
}


.pricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: hsl(225, 100%, 98%);
  border-radius: 10px;
  width: 80%;
  padding: 5px;
  margin: 0 auto;
}

.musicicon {
  width: 15%;
  height: 15%;
  margin: 15px;
}

.plan-price {
  display: flex;
  flex-direction: column;
}

.change {
  margin-left: auto;
  margin-right: 20px;
  text-decoration: underline;
  color: hsl(245, 75%, 52%);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.change:hover {
  color: hsla(245, 75%, 52%, 70%);
  text-decoration: none;
}

.plan {
  color: black;
  font-weight: 800;
  font-size: 14px;
}

.price {
  color: hsl(224, 23%, 55%);
  font-weight: 700;
  font-size: 14px;
}


button {
  background-color: hsl(245, 75%, 52%); 
  color: white;
  font-weight: 600;
  font-size: 15px;
  width: 80%;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  display: block;
  margin: 30px auto 0 auto;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px hsla(245, 75%, 52%, 0.3);
}

button:hover {
  background: hsla(245, 75%, 52%, 60%);
}


p.cancel {
  color:hsl(224, 23%, 55%);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}

p.cancel:hover {
  color: black;
}

.plan-price span.plan {
  margin-bottom: 5px;
}