@import url('https://fonts.cdnfonts.com/css/cooper-std');
body {
    margin: 0;
    background: #663315;
}

#board {
    width: 100vw;
    height: 100vh;
    
}

.card {
    position: absolute;
    background: #fdeacb;
    padding: 10px 10px 30px;
    cursor: grab;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5);
    border: #3b2412 solid 3px;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.caption {
    text-align: center;
    font-size: 12px;
    color: #3b2412;
    margin: 8px 0 0;
    font-family: 'Cooper Std', 'Cooper Black', Georgia, serif;
}

.drawer {
    background: #3b2412;
    color: #D1B271;
    font-size: 11px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: 'Cooper Std', 'Cooper Black', Georgia, serif;
}

.drawer.open {
    max-height: 100px;
    padding: 8px;
}

#menu {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #3b2412;
    color: #D1B271;
    padding: 22px 20px;
    width: 190px;
    z-index: 100;
    border: 3px solid #D1B271;
    box-shadow: 5px 5px 0px #85421b;
    transform: rotate(-1.5deg);
    cursor: default;
    font-family: cooper std, cooper black, georgia, serif;
}

#menu-title {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 0.9;
}

#menu-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#menu-links a {
    color: #D1B271;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
}

#menu-links a:hover {

    text-decoration: underline;
}

.card.expanded {
    width: 350px;
}

.card.expanded img {
    height: 400px;
}