/* Whole cards */
.card {    
    position: relative;    
    margin-right: 0.5%;
    margin-bottom: 1%;    

    /* Add shadows */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    padding: 10px 7px 7px 7px;
}

.card:hover{
    /* shadow on hover */
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}

.container {        
    padding: 2px 16px;        
}


/* Project hyperlinks */
a.project-link:link
{
   color: #159957;
   text-decoration: none
   
}
a.project-link:visited
{
   color: #159957;
   text-decoration: none;
}
a.project-link:hover
{
   color: #159957;
   text-decoration: none;
}
a.project-link:active
{
   color: #159957;
   text-decoration: none;
}


/* Youtube videos rescaling */
.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
