@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
body{
    font-family: 'Poppins',sans-serif;
}
.container{
    width: 100%;
}
.packages{
    margin: 20px;
    width: 300px;
    padding-bottom: 1.5em;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 2px;
    border: 1px solid rgb(97,104,101);
    box-shadow: 2px 6px 25px #1e2321;
    flex-wrap: wrap;
    color: black;
}
.first{
    color: #00cc99;
}
h1,h2{
    font-size: 2.2em;
}
.list li{
    font-size: 20px;
    list-style: none;
    border-bottom: 1px solid #f4f4f4;
    padding-inline-start: 0;
    border-width: 1px;
}
ol,ul{
    padding: 0;
}
.top{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input, label{
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0;
}
.button{
    padding: 10px 30px;
    font-size: 1.4em;
    margin: 15px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #00cc99;
    background-color: #fff;
    box-shadow: 0 0 1px 0 #00cc99 inset,0 0 5px 1px #00cc99;
    
}
.button:hover{
    background-color: #00cc99;
    color: #fff;
    transform: scale(1.1);
}
.package-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.switch{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}
.slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e2321;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
}
.slider:before{
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: 0.4s;
}
input:checked + .slider{
    background-color: #00cc99;
}
input:focus + .slider{
    box-shadow: 0 0 1px #50bfe6;
}
input:checked + .slider:before{
   transform: translateX(26px);
}
.slider.round{
    border-radius: 34px;
}
.slider.round:before{
    border-radius: 50%;
}