* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* .container {
    background: url('Over\ 40\ Cute\ Anime\ iPad\ Backgrounds\ You\ Must\ Check\ Out.jpg') no-repeat center center/cover;
} */
body {
    Background: linear-gradient(to right, #4facfe, #8e44ad);
    color: #ffffff;
}


.header {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px;
    position: sticky;
    top: 0px;
    z-index: 2;
}

.add-btn {
    border-radius: 50%;
    font-size: 28px;
    padding: 12px 18px;
    border: none;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.empty-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.float {
    font-size: 28px;
    color: #444;

    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
}

.in-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
     max-width: 400px;
}

.in-container h2 {
    color: black;
    /* not grey */
    font-weight: 600;
}

.in-container .in-delete {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}

.in-delete:hover {
    background-color: black;
    color: azure;
    border-color: azure;
    cursor: pointer;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.form-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    color: white;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.form-container input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    /* border-radius: 10px; */
    border: none;
    background: transparent;
    border-bottom: solid 2px rgb(255, 255, 255);
}

.form-container textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    /* border-radius: 10px; */
    /* border: none; */
    background: transparent;
    border: solid 2px rgb(255, 255, 255);
}

.form-container input,
.form-container textarea {
    color: white;
    outline: none;
}

.form-container button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/* for dynamic for all type of device  */

/* Mobile */

@media (max-width: 600px) {
    .header {
        text-align: center;
        font-size: 14px;
    }

    .float {
        font-size: 20px;
    }

    .add-btn {
        font-size: 24px;
        padding: 10px 16px;
    }
}

/*  Tablet */
@media (min-width: 601px) and (max-width: 900px) {
    .float {
        font-size: 24px;
    }
}

/*  Laptop/Desktop */
@media (min-width: 901px) {
    .float {
        font-size: 28px;
    }
}