@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f1f1f1;
}

.container {
    width: 100%;
    max-width: 600px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
}

.card {
    width: 350px;
    height: 600px;
    position: relative;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(163, 163, 163, 0.5);
    overflow: hidden;
}

#cera-1,
#cera-2,
#cera-3,
#cera-5,
#cera-7,
#cera-8 {
    width: 150px;
    position: absolute;
    top: 120px;
    left: -650px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
    transform: translateX(0);
}

.card-items {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.card-top {
    width: 100%;
    height: 60%;
    background: #0088d2;
    border-radius: 30px;
    color: #fff;
    padding-top: 20px;
    position: relative;
}

.icons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 20;
}

.icons span {
    cursor: pointer;
    padding: 1px;
    font-size: 28px;
    transition: 0.3s;
}

.icons span:hover {
    transform: scale(1.2);
}

.card-top h3 {
    font-size: 20px;
    padding-left: 1.5em;
    margin-top: 0;
}

.card-top h1 {
    font-size: 28px;
    padding-left: 1em;
    font-weight: 400px;
    margin-top: 5px;
}

.card-bottom {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card-bottom h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-bottom p {
    text-align: left;
    font-size: 14px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    border: 2px solid #0088d2;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 16px;
    color: #0088d2;
    text-decoration: none;
    transition: all 0.5s;
}

.btn:hover {
    background: #0088d2;
    color: #fff;
}

.title{
    color: white;
}