*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image:url(./Assets/os-x-mountain-lion-5120x3200-24074.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.container {
    text-align: center;
    width: 100%;
    padding: 1.2rem;
    
}

h1 {
    color: #090156;
    margin-bottom: 20px;
    font-size: 2rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    letter-spacing: 4px;
    margin: 20px 0;
    font-weight: bolder;
    
}

.board {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.list {
    background-color: rgba(5, 176, 233, 0.253);
    padding: 1rem;
    border-radius: 8px;
    width: 30%;
    min-height: 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.9);
}

.list h2 {
    color: #0e0f0f;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.list.hover {
  border: 2px dashed rgba(222, 222, 222, 0.982);
}

.card {
    background: rgba(10, 101, 187, 0.763);
    color: #fffefe;
    padding: 1rem;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition : transform 0.2rem, box-shadow 0.2s ;
    font-family: monospace;
}
.card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 110, 255, 0);
}


.card:active {
    cursor: grabbing;
    transform:scale(1.05);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.list.over {
    background-color: rgba(233, 233, 233, 0.288);
}
@media (max-width: 760px) {

    .board {
        flex-direction: column;
        align-items: center;
    }

    .list {
        width: 80%;
        margin-bottom: 20px;
    }
    
}