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

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    /* background-color: rgb(24, 81, 204); */

    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #282c34;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main > h1 {
    font-size: 70px;
}

.main > p {
    font-size: 30px;
    margin-bottom: 20px;
}

.container {
    display: flex;

    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.empty {
    height: 250px;
    width: 250px;
    margin: 10px;
    border: solid 3px black;
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 2px dashed #666;
    transition: background-color 0.3s ease;
}

.fill {
    background-image: url('https://source.unsplash.com/random/150x150');
    height: 250px;
    width: 250px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
}

.hold {
    border: solid 5px #ccc;
}

.hovered {
    background-color: #333;
    border-color: white;
    border-style: dashed;
}

@media (max-width: 800px) {
    body {
        flex-direction: column;
    }
}


/* Responsive Design */
@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .empty {
        width: 100px;
        height: 100px;
    }

    .fill {
        width: 60px;
        height: 60px;
    }
}