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

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

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Red Hat Display", sans-serif;
    background-image: url(./images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-color: hsl(225, 100%, 94%);
}

.container {
    width: 24rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
}

.container .image img {
    width: 100%;
    border-radius: 15px 15px 0px 0px;
    margin-bottom: 35px;
}

.container h1 {
    font-size: 27px;
    font-weight: 700;
    color: hsl(223, 47%, 23%);
    margin-bottom: 20px;
}

.container p {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding-right: 35px;
    padding-left: 35px;
    color: hsl(224, 23%, 55%);
    margin-bottom: 20px;
}

.plan {
    height: 5rem;
    background-color: hsl(225, 100%, 98%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 25px;
}

.info {
    display: flex;
    flex-direction: column;
    margin-right: 70px;
    gap: 7px;
}

.info span {
    color: hsl(224, 23%, 55%);
}

.plan img {
    margin-right: 15px;
    height: 94%;
}

.plan a {
    font-weight: 700;
    font-size: 13px;
    color: hsl(245, 75%, 52%);
}

.plan a:hover {
    color: hsl(276, 75%, 52%);
    text-decoration: none;
}

.btn {
    padding: 10px;
    width: 19rem;
    border: none;
    color: white;
    font-weight: 700;
    background-color: hsl(245, 75%, 52%);
    box-shadow: 0px 20px 10px 0px hsl(225, 100%, 94%);
    border-radius: 10px;
    margin-bottom: 25px;
}

.btn:hover {
    background-color: hsl(276, 75%, 52%);
}

.order {
    margin-bottom: 30px;
    font-size: 12px;
    color: hsl(224, 23%, 55%);
    font-weight: 900;
    text-decoration: none;
}

.order:hover {
    color: hsl(223, 47%, 23%);
    font-weight: 900;
    font-size: 12px;
}

@media screen and (max-width:600px) {

    .container {
        width: 90%;
    }

    .image {
        width: 100%;
    }

}