/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18-mar-2016, 17:10:12
    Author     : jusa_
*/
@import "../global.css";
@import "front.css";

#stContainer{
    width: 700px;
}

#arTaller h1,#arTaller h2,#arTaller h3{
    text-align: center;
}
#arTaller h1{
    font-size: 2.4em;
    margin: 30px 0 10px 0;
    color: #666;
}
#arTaller h2{
    font-size: 2.1em;
    margin: 0;
    color: #777;
}
#arTaller h3{
    font-size: 1.8em;
    margin: 30px 0 10px 0;
    color: #999;
}

.arTaller{
    width: 100%;
    cursor: pointer;
}
.arTaller>img{
    width: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    
    transition: 1s;
}

.arTaller:hover img{
    filter: grayscale(0%);    
    -webkit-filter: grayscale(0%);
}

.arTaller>h1{
    font-size: 1.8em;
}
.arTaller>p{
    font-size: 1.4em;
}
@media screen and (max-width:940px){
    #stContainer{
        width: 100%;
    }
}