@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: "Red Hat Display", sans-serif; 
    margin: 0;
    background-color: var(--pale-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--dark-blue);
    background-image: url(images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
  }

:root{
    --very-pale-blue: hsl(225, 100%, 98%);
    --dark-blue: hsl(223, 47%, 23%);
    --bright-blue: hsl(245, 75%, 52%);
    --desaturated-blue: hsl(224, 23%, 55%);
    --dark-blue: hsl(223, 47%, 23%);
    --pale-blue: hsl(225, 100%, 94%);
}

.banner {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-width: 90%;
    text-align: center;
}

.container {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
}

.container p {
    padding: 0 1.5em;
}

.container h2 {
    font-weight: 900;
}

.imagem {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.plan {
    padding: 1em;
    border-radius: 10px;
    background-color: var(--very-pale-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan p {
    margin: 0%;
}

.plan a {
    font-weight: 700;
}

.annual {
    color: var(--dark-blue);
    font-weight: 700;
}

.proceed {
    padding: 1em;
    border-radius: 10px;
    background-color: var(--bright-blue);
    color: white;
    text-decoration: none;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 15px var(--pale-blue);
}

.cancel {
    padding: 1em;
    border-radius: 10px;
    display: flex;
    color: var(--dark-blue);
    text-decoration: none;
    justify-content: center;
    align-items: center;
}