@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    margin: 0;
}
:root {
    --Very-Light-Grayish-Blue: hsl(240, 78%, 98%);
    --Light-Grayish-Blue: hsl(234, 14%, 74%);
    --Grayish-Blue: hsl(233, 13%, 49%);
    --Dark-Grayish-Blue: hsl(232, 13%, 33%);
    --Linear-Gradient: hsl(236, 72%, 79%) to hsl(237, 63%, 64%);
}
body {
  background-color: var(--Very-Light-Grayish-Blue);
    background-image: url(./images/bg-top.svg), url(./images/bg-bottom.svg);
    background-repeat: no-repeat;
    padding: 30px 0;
    background-position: top right , bottom left;
}
.title {
    text-align: center;
    font-size: 35px;
    color: hsl(228, 45%, 44%);

}
.wrapper {
    text-align: center;
}
.switch input {
    opacity: 0;
}
.switch {
    height: 32px;
    width: 60px;
    position: relative;
    cursor: pointer;
}
.slider {
    position: absolute;
   border-radius: 20px;
   background: linear-gradient(180deg ,hsl(236, 72%, 79%),hsl(237, 63%, 64%));
   top: 0;left: 0;right: 0;bottom: 0;
}
.slider::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    height: 25px;
    width: 25px;
    bottom: 4px;
    left: 4px;
    transition: .3s;
}
input:checked+.slider::before {
    transform: translateX(26px);
}
.pricing {
    display: flex;
    justify-content: center;
    color: var(--Grayish-Blue);
    font-size: 16px;
    padding: 30px 0;
}
.pricing label {
    margin: -5px 20px;
}
.card {
    padding: 30px 0px;
}
.card-title {
    color: var(--Grayish-Blue);
    font-size: 17px;
    font-weight: 700;
}
.price-annually, .price-monthly {
    font-size: 32px;
    color: var(--Dark-Grayish-Blue);
    display: flex;
    justify-content: center;
    align-items: center;
}
.price {
    font-size: 64px;
    font-weight: 500;
    padding-left: 7px;
}
.price-monthly {
    display: none;
}
.featured {
    background-color: hsl(237, 63%, 64%);
    color: #fff;
    padding: 60px 0;
}
.featured .card-title {
 color: #fff;
}
.featured .price-annually {
    color: #fff;
}
.featured .price-monthly {
    color: #fff;
} 
.featured li {
    color: #fff;
}
ul {
    list-style-type: none;
    padding: 19px 40px;
}
ul li {
    
    color: var(--Grayish-Blue);
    font-size: 14px;
    font-weight: 700;
    padding: 15px 0;
   
    border-bottom: 1px solid var(--Light-Grayish-Blue);
}
ul li:first-child {
    border-top: 1px solid var(--Light-Grayish-Blue);
}
.learn {
    text-decoration: none;
    color: #fff;
    background-color: hsl(237, 63%, 64%);
    padding: 10px 0px;
    width: 80%;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
    margin: auto;
}
.learn1 {
    text-decoration: none;
    background-color: #fff;
    color: hsl(237, 63%, 64%);
    padding: 10px 0px;
    width: 80%;
    border-radius: 5px;
    transition: .3s;
    cursor: pointer;
    margin: auto;
}
.learn:hover {
    background-color: white;
    border: 1px solid hsl(237, 63%, 64%);
}
.learn1:hover {
    background-color: hsl(237, 63%, 64%);
    color: #fff;
    border: 1px solid white;
}
.attribution {
    margin-top: 40px;
    font-size: 16px;
}