@import url(./common.css);

body>main {
    background: no-repeat url(images/background.jpg) center bottom;
    background-size: cover;
    column-count: 3;
    column-gap: 0px;
}

body>main>div {
    border: 8px solid whitesmoke;
    cursor: pointer;
    box-sizing: border-box;
    height: 560px;
    position: relative;
}

body>main>div:hover {
    background-color: rgba(255,255,255,0.3);
}

body>main>div>div {
    background-color: rgba(33, 205, 33, 0.9);
    bottom: 100px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px;
    color: white;
    height: 64px;
    left: 0px;
    padding: 8px;
    position: absolute;
    right: 0px;
}

