body {
    font-family: 'Fantasy', 'Arial', sans-serif;
    text-align: center;
    background-color: #f0f8ff;
}

h1 {
    color: #333;
}

.devices {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.device {
    width: 200px;
    height: 200px;
    margin: 20px;
    border: 2px solid black;
    border-radius: 2%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2%;
    pointer-events: none;
}

.cables {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cable {
    width: 60px;
    height: 30px;
    margin: 10px;
    border: 2px solid gray;
    cursor: grab;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.cable:hover {
    border-color: black;
    transform: scale(1.1);
}

.cable.wrong {
    animation: disappear 0.5s forwards;
}

@keyframes disappear {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}

