@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600&display=swap');
body {
    font-family: "Comfortaa", sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0;
    color: #222;
}

.element1 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease forwards;
}

.element2, .element3 {
    margin: 40px auto;
    max-width: 1100px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    animation: slideUp 1s ease forwards;
}
.element2:hover, .element3:hover { transform: translateY(-5px); }

.cards {
    border-radius: 15px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards;
}
.cards h1 { font-size: 18px; margin-bottom: 8px; }
.cards p { font-size: 14px; color: #555; }
.cards:hover { transform: scale(1.1); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.btnAdd {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 30px;
    color: #000000;
    background-color: white;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btnAdd:hover {
    color: #ffffff;
    background-color: rgb(0, 0, 0);

    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/* Animations */
@keyframes fadeIn { from {opacity:0; transform: translateY(20px);} to {opacity:1; transform: translateY(0);} }
@keyframes slideUp { from {opacity:0; transform: translateY(40px);} to {opacity:1; transform: translateY(0);} }
@keyframes fadeInUp { from {opacity:0; transform: translateY(30px);} to {opacity:1; transform: translateY(0);} }