@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --Pale-blue: hsl(225, 100%, 94%);
    --Bright-blue: hsl(245, 75%, 52%);
    --Very-pale-blue: hsl(225, 100%, 98%);
    --Desaturated-blue: hsl(224, 23%, 55%);
    --Dark-blue: hsl(223, 47%, 23%);
}

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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--Pale-blue);
    font-family: "Red Hat Display", sans-serif;
    background-image: url('./images/pattern-background-desktop.svg'); 
    background-repeat: no-repeat; 
    background-size: 100% auto;
}

.container {
    background: white;
    width: 22rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.photo {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
    display: block;
}

.section {
    padding: 2rem;
}

.texts h2 {
    font-weight: 800;
}

.texts p {
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.annual_plan {
    background: var(--Very-pale-blue);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.music_part {
    display: flex;   
    align-items: center;
}

.music_part img {
    width: 40px;
    height: 40px;
}

.price {
    font-size: 14px;
    line-height: 1.5rem;
    align-items: center;
    margin-left: 1.5rem;
}

span {
    font-weight: 700;
}

.btn {
    display: flex;
    flex-direction: column;
}

a {
    cursor: pointer;
}

.proceed{
    color:hsl(225, 100%, 98%);
    background: var(--Bright-blue);
    width: 18rem;
    align-items: center;
    border-radius: 0.5rem;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.proceed:hover {
    background: var(--Dark-blue);
}

.cancel {
    color:hsl(223, 47%, 23%);
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 14px;
    border: none;
    background: none;
    cursor: pointer;
}

@media (max-width: 768px) { 
    .body {
      background-image: url('./images/pattern-background-mobile.svg'); /* Мобайл үшін фон суреті */
      background-size: 100% auto; /* Суретті экранға толық жайып шығарады */
      
   }
  }