/* im waiting for the commit to finish what else to do i did not upload this i used the built in editor */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(to bottom, white, skyblue);
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    color: #333;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.grid-item {
    backdrop-filter: blur(100px);          /* the magic */
    -webkit-backdrop-filter: blur(100px);  /* Safari support */
    opacity: 0.8;

    background:
        linear-gradient(45deg, #f0f8ff 25%, transparent 25%),
        linear-gradient(-45deg, #f0f8ff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f0f8ff 75%),
        linear-gradient(-45deg, transparent 75%, #f0f8ff 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid skyblue;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, transform 0.2s, box-shadow 0.3s ease;
}

.grid-item:hover {
    background-color: skyblue;
    color: navy;
    transform: perspective(500px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

.credit {
    font-size: 0.9em;
    color: #666;
}
