body{
    margin: 15px;
    background-color: gray;
}
.hd{
    width: 100%;
    background-color: #fff;
    background: url('../images/hdr.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100px;
    display: flex;
    height: 200px;
    
}
.logo{
    padding: 10px;
    
    margin-left: 10px;
    width: 10%;
    float: left;
}
.banner{
    margin-left: 30px;
    margin-top: 20px;
    display: block;
    font-size: 3vw;
    text-shadow: 2px 2px 3px navy;
    color: #FFF;
    display: inline-table;
}
.sban{
    margin-left: 30px;
    display: block;
    font-size: 1.5vw;
    color: #FFF;
    text-shadow: 2px 2px 5px navy;

}
.menu{
    width: 100%;
    text-align: center;
    background-color: #07136D;
    padding-top: 15px;
    padding-bottom:  15px;
    float: left;
}
.menu a{
    display: inline;
    padding: 15px;
    color: #fff;
    text-decoration: none;
}
.menu a:hover{
    background-color: yellow;
    color: red;
}
.mind{
    width: 100%;
    background-color: #fff;
    display: block;
}
.smind{
    display: flex;
    width: 100%;
}
.mlef{
    width: 77%;
    text-align: center;
}
.mrig{
    width: 23%;
    float: left;
    text-align: center;
    display: inline-block;
    border-left: dashed;
    border-color: #F7F5F4;
}
.rainbow {
  
   /* Font options */
  font-family: 'Pacifico', cursive;
  text-shadow: 2px 2px 4px #000000;
  font-size:40px;
  
   /* Chrome, Safari, Opera */
  -webkit-animation: rainbow 5s infinite; 
  
  /* Internet Explorer */
  -ms-animation: rainbow 5s infinite;
  
  /* Standar Syntax */
  animation: rainbow 5s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rainbow{
  0%{color: orange;}	
  10%{color: purple;}	
	20%{color: red;}
  30%{color: CadetBlue;}
	40%{color: yellow;}
  50%{color: coral;}
	60%{color: green;}
  70%{color: cyan;}
  80%{color: DeepPink;}
  90%{color: DodgerBlue;}
	100%{color: orange;}
}

/* Internet Explorer */
@-ms-keyframes rainbow{
   0%{color: orange;}	
  10%{color: purple;}	
	20%{color: red;}
  30%{color: CadetBlue;}
	40%{color: yellow;}
  50%{color: coral;}
	60%{color: green;}
  70%{color: cyan;}
  80%{color: DeepPink;}
  90%{color: DodgerBlue;}
	100%{color: orange;}
}

/* Standar Syntax */
@keyframes rainbow{
    0%{color: orange;}	
  10%{color: purple;}	
	20%{color: red;}
  30%{color: CadetBlue;}
	40%{color: yellow;}
  50%{color: coral;}
	60%{color: green;}
  70%{color: cyan;}
  80%{color: DeepPink;}
  90%{color: DodgerBlue;}
	100%{color: orange;}
}

.shelf {
    margin-bottom: 100px;
    border-bottom: 30px solid #A1A194;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -25px;
    
    z-index: -1;
}


