.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

body {
    font-family: "Red Hat Display", serif;
    background-color: var(--main-background-color);
    background-image: url('../images/pattern-background-desktop.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    overflow: hidden;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 450px;
    height: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 4px 8px 25px -5px hsl(120, 0%, 50%);
}

.hero {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}

.summary {
    text-align: center;
    margin: 50px 50px 0 50px;

}

.title {
    color: var(--dark-text-color);
    font-weight: 900;
    font-size: 25px;
}

.description {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 10px;
}

.plans {
    background-color: var(--main-background-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 50px;
    padding: 10px;
    border-radius: 10px;
}

.plan-type, a {
    font-weight: 900;
    font-size: 16px;
}

a {
    cursor: pointer;
}

a:hover {
    color: var(--hover);
}

.prices {
    font-size: 16px;
}

.confirm {
    display: flex;
    justify-content: center;
}
.confirm button {
    border: none;
    background-color: var(--continue-button-color);
    color: #ffffff;
    width: 340px;
    height: 40px;
    margin: 10px 10px 0;
    border-radius: 10px;
    font-family: "Red Hat Display", serif;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 3px 7px 20px -5px gray;
}

.confirm button:hover {
    background-color: var(--hover);
}

.cancel {
    display: flex;
    justify-content: center;
    margin: 15px;
}

.cancel button {
    border: none;
    background-color: transparent;
    color: var(--text-color);
    font-family: "Red Hat Display", serif;
    font-weight: 900;
    cursor: pointer;
}

.cancel button:hover {
    color: #000000;
}
