
#t1{
    width: 85%;
    max-width: 1400px;
    margin: auto;
}
#tc {
    margin-bottom: 15px; 
}
#tc img{
    width: 120px;
    height: 120px;
    margin: auto; 
    margin-bottom: 15px; 
    align-content: center;
}
#tc p{
    font-family: fantasy;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}
#tt{
    padding: 10px 150px;
    background-color: rgba( 171, 235, 198, 0.3);
}
#tt p{
    font: oblique bold 100% cursive;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    font-size: 25px;
    color: black;
}
#i:hover{
    transform: scale(1.3) rotate(-5dg);
    opacity: inherit;
}
form {
    width: 500px;
    margin: auto;
    padding: 0px 50px;
    box-sizing: border-box;
    border-radius: 7px;
}
form h4{
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 30px;
}
form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
        
    box-sizing: border-box;
    border-radius: 7px;
}
 textarea{
    background-color: #c3c3f3;
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    box-sizing: border-box;
    border-radius: 7px;
}
.element{
    display: block;
    margin-left: auto;
    margin-right: auto;
    &.hidden{
          overflow: hidden;
      }
    .img{
        display:block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;   
        transform:scale(1);
        -ms-transform:scale(1); // IE 9 
        -moz-transform:scale(1); // Firefox 
        -webkit-transform:scale(1); // Safari and Chrome 
        -o-transform:scale(1); // Opera 
        -webkit-transition: all 500ms ease-in-out; // IE 9
        -moz-transition: all 500ms ease-in-out; // Firefox
        -ms-transition: all 500ms ease-in-out; // Safari and Chrome 
        -o-transition: all 500ms ease-in-out; // Opera       
    }        
    &:hover{
        .img{
            transform:scale(1.2);
            -ms-transform:scale(1.2); // IE 9 
            -moz-transform:scale(1.2); // Firefox 
            -webkit-transform:scale(1.2); // Safari and Chrome 
            -o-transform:scale(1.2); // Opera
        }
    
    } 
}