.column h1 {
    padding: 10px;
}

.column p {
    padding: 40px;
}

.column .artbtn {
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #444;
    color: #f2f2f2;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;
    box-shadow: 4px 4px 2px 2px black;
    border: none;
}

.column .artbtn:hover {
    background-color: #ddd;
    color: black;
    transition: all 0.5s;
}

/* Dropdown stuff which i have no idea how it works */
.dropbtn {
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    background-color: #555;
    color: whitesmoke;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #666;
    transition: all 0.5s;
}

.show {
    display: block;
}
