.card {
    min-height: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
    background: linear-gradient(to bottom, #fefcea, #e6f1f7);       
}
.picture {
    max-height:120px;
    width:100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5); 
}
.title {
    color:midnightblue;
    cursor:pointer;
}
.title:hover {
    color:cadetblue;
}
.header {
    min-height: 50px; 
}
#inform {
    color:green;
}
#text {
    color:cornsilk;
    opacity: 80%;
}
.container {
    min-height: 90vh;
}
.footer {
    width:100%;
    max-height:10vh; 
    text-align: center;
    min-height: 40px;
    font-size: 0.8em;
}
.favicon {
    margin-right:2px;
    height:16px;
    width: 16px;
    display: inline;
}
#main-image {
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.weekend {
    color:crimson;
}
#email {
    display: inline;
}
#copiright {
    display: inline;
    margin-right: 50px;
    margin-bottom:10px;
}
#overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 20;
    transition: .3s all;
 }
 #modal {
    opacity: 0;
    visibility: hidden;

    min-width: 60%;
    max-height: 80vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 30;
    font-size: 0.9em;
    
    /*  Побочные стили   */
    box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
    text-align: justify; 
    padding: 25px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #fefcea, #e6f1f7); 
    transition: 0.3s all;
 }
 #modal_cross {
    width: 20px;
    height: 20px;
    fill: #444;
    cursor: pointer;
    float:right;
    margin-left:15px;
 }
#modal.active,
#overlay.active{
   opacity: 1;
   visibility: visible;
}
#modal_img {
    max-width: 130px;
    float:left;
    margin-right:10px;
    margin-top: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5); 
}
.guide {
    cursor: pointer;
    color:midnightblue;
}
.guide:hover {
    color:cadetblue;
}
#share {
    padding-top: 5px;
}
.info-line {
    display: inline;
    padding: 2px;
    font-size: 0.8em;
    list-style: none;
}
#list {
    padding-top: 5px;

}
#info-count {
    float: right;
}
.info {
    box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
    background: linear-gradient(to bottom, #fefcea, #e6f1f7);
    padding-top: 5px;
    border-radius: 5px;
}
#btn {
    border-radius: 5px;
    margin-left: 20px;
    color:green;
}