section {
    background: url('../images/photo1.jpg') no-repeat;
    background-size: cover;
    min-height: 100vh;
}

section>h1 {
    color: #fff;
    text-align: center;
    margin: 1rem 0;
    font-size: 2.5rem;
}

.pricing-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    margin: 1rem;
    width: 275px;
    min-height: 400px;
    padding: 1rem .75rem;
    box-shadow: 1px 2px 10px 1px #333;
}

.pricing-card .plan {
    font-size: 2rem;
}

.pricing-card .description {
    font-size: .9rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.pricing-card>a {
    background-color: royalblue;
    text-decoration: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: .3s ease-in-out;
}

.pricing-card>a:hover {
    background-color: rgb(31, 60, 150);
}

.pricing-card .price {
    font-weight: bold;
    font-size: 2rem;
    padding: 10px 0;
    margin-top: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
}

.pricing-card ul {
    text-align: left;
    padding: 0 1rem;
}

.pricing-card ul li {
    font-size: .9rem;
    list-style-type: circle;
    padding-top: 5px;
}