* {
    margin: 0;
    padding: 0;
}
.page {
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    background-image: linear-gradient(150deg, #000000 27%, #003366 44%, #ff66b2 74%, #33cc99 91%, #bfbfbf 103%);
}
.page .container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.container .main-title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
h3 {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    word-spacing: 8px;
    font-size: 30px;
    color: #ff6a88;
}
.container .pakage{
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: calc(70% / 3);
    height: 500px;
}
.pakage .heading{
    color: white;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 10px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 5px;
}
h1 {
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 2px;
}
hr {
    width: 70%;
    height: 1px;
    background-color: black;
    border-radius: 5px;
    margin: 5px 0;
}
.pr {
    text-align: center;
    font-weight: 600;
}
.pakage .one{
    background-image: linear-gradient(135deg, #ff9a9e 14%, #ff6a88 27%, #ff3e55 65%, #ff8a00 83%);
}
.pakage .two{
    background-image: linear-gradient(135deg, #ffffff 5%, #cce5ff 20%, #66b3ff 33%, #0066cc 73%);

}
.pakage .three{
    background-image: linear-gradient(135deg, #ffffff -15%, #d4fcd6 0%, #7de2d1 37%, #4da6ff 87%);
}
.title{
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    height: 400px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.salary {
    font-weight: bold;
    color: black;
    font-size: 50px;
}
p { 
    text-align: center;
}
.break {
    width: 40%;
    height: 1px;
    background-color: gray;
    border-radius: 5px;
    margin-top: -30px;
}
button {
    width: 7rem;
    height: 2rem;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
.btn1{
    background-image: linear-gradient(135deg, #ff9a9e 14%, #ff6a88 27%, #ff3e55 65%, #ff8a00 83%);
}
.btn2{
    background-image: linear-gradient(155deg, #ffffff -12%, #cce5ff 8%, #66b3ff 33%, #0066cc 73%);
}
.btn3{
    background-image: linear-gradient(135deg, #ffffff -15%, #d4fcd6 0%, #7de2d1 37%, #4da6ff 87%);
}
/* Medium screens (tablets and small laptops) */
@media (max-width: 992px) {
    .page {
      flex-direction: column;
      height: auto;
      padding: 20px 0;
    }
    .page .container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .container .pakage {
      width: 60%;
      height: auto;
    }
    .pakage .heading{
        padding: 10px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 5px;
    }
    .title{
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        background-color: white;
        height: 400px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .salary {
      font-size: 40px;
    }
    button {
      width: 100%;
    }
    .container .main-title {
        display: flex;
        width: auto;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    h3{
        font-size: 20px;
    }
}
  /* Small screens (phones) */
@media (max-width: 576px) {
    .container .pakage {
      width: 60%;
    }
    .salary {
      font-size: 32px;
    }
    h1 {
      font-size: 20px;
    }
    p, .pr {
      font-size: 14px;
    }
    .break {
      width: 60%;
    }
    button {
      font-size: 14px;
      height: 2.5rem;
    }
    .container .main-title {
        display: flex;
        width: auto;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    h3{
        font-size: 15px;
    }
}