/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* _resouce_card.html */

.resource-card {
    position: relative;
    /* background-color: #1d1e26; */
    /* width: 50%; */
}

.resource-card-body {
    /* background-color: #23242d; */
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: darkgrey;
    /* background-color: #17171e; */
    overflow: hidden;
    width: 100%;
    height: 20%;
    transition: .5s ease;
}

.resource-card:hover .overlay {
    height: 80%;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.resource-card {
    box-shadow: .5px .5px .5px .5px black;
    border: solid 1px;
    border-radius: 2px;
}
