﻿.cover-card {
	border: 2px solid white;
	background: silver;
	padding: 0px;
	margin: 0px;
	height:200px;
}
.cover-card > p {
	text-align: center;
	background-color: rgba(6,6,6,0.0);
	color: rgba(6,6,6,0.0);
	width: 100%;
	height: 100%;
	font-weight: bold;
	font-size: 20px;
}
.cover-card-small > p {
	text-align: center;
	background-color: rgba(6,6,6,0.0);
	color: rgba(6,6,6,0.0);
	width: 100%;
	height: 100%;
	font-weight: bold;
	font-size: 25px;
}
.cover-card:hover > p {
	background-color: rgba(6,6,6,0.5);
	color: white;
	text-shadow: 3px 3px 10px #000;
    cursor:pointer;
}
.cover-card-small:hover > p {
	background-color: rgba(6,6,6,0.5);
	color: white;
	text-shadow: 3px 3px 10px #000;
    cursor:pointer;
    font-size:25px;
}
.cover-card-active > p {
    text-align: center;
	color: rgba(6,6,6,0.0);
	width: 100%;
	height: 100%;
	/*font-weight: bold;
	font-size: 80px;
    background-color: rgba(6,6,6,0.5);*/
	color: white;
	text-shadow: 3px 3px 10px #000;
}
@media screen and (min-width: 993px) {
    .cover-card-active > p {
        font-size: 65px;
    }
    .cover-card > p {
        font-size: 65px;
    }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    .cover-card-active > p {
        font-size: 45px;
    }
    .cover-card > p {
        font-size: 45px;
    }
}
@media screen and (min-width: 568px) and (max-width: 767px) {
    .cover-card > p {
        font-size: 25px;
    }
    .cover-card-active > p {
        font-size: 35px;
        top: 100px;
    }
}
@media screen and (min-width: 301px) and (max-width: 567px) {
    .cover-card > p {
        font-size: 15px;
    }
    .cover-card-active > p {
        font-size: 35px;
            top: 100px;
    }
}
@media screen and (min-width: 201px) and (max-width: 300px) {
    .cover-card > p {
        font-size: 10px;
    }
    .cover-card-active > p {
        font-size: 10px;
    }
}
@media screen and (max-width: 200px) {
    .cover-card > p {
        font-size: 5px;
    }
    .cover-card-active > p {
        font-size: 5px;
    }
}
.nodecoration:hover {
    text-decoration:none;
}