@import url("designkit-layout.min.css");

/* designkit form responsivo */
.container {
    display: grid;
    /* Display as a Grid */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* repeat = as many times as you can fit */
    /* auto-fit = fit as many items on the line as possible, go bigger if you need to */
    /*minmax = (min size, max size) = the minimum size the column should be is 200px, but if there's space then give them all 1fr of that width. */
    grid-gap: 10px;
}
  
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f2f0ed;
}

.header-navigation{
    position: fixed;
    background: rgba(0, 0, 0, 0.5) 0% !important;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    z-index: 9;
}

.button-header{
    background: none;
    border: none;
    color: #fff;
    padding: 20px;
}

.button-header:hover{
    cursor: pointer;
    color: #61a1be;
}

.album {
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    overflow: hidden;
    margin: 10px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    -moz-transition: all 0.2s ease-in-out;
    /* Firefox 4 */
    -webkit-transition: all 0.2s ease-in-out;
    /* Safari and Chrome */
    -o-transition: all 0.2s ease-in-out;
    /* Opera */
    transition: all 0.2s ease-in-out;
}

.album-img {
    padding: 5px;
    display: block;
    overflow: hidden;
    width: 150px;
    max-height: 150px;
    background: #fff;
    border: 1px solid #ccc;
    margin: 0 auto;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

.album-img img {
    width: 100%;
    height: auto;
    max-height: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.album-title {
    font-size: 18px;
    display: block;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.album-description {
    display: block;
    overflow: hidden;
    text-align: center;
    color: #666;
}

.link-album {
    text-decoration: none;
    color: #000;
}

.link-album:hover .album {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}