﻿body {
}
.bold {
    font-weight: bold;
}
.golge:hover {
    filter: drop-shadow(2px 2px 10px black);
}
.ortala {
    height: 250px;
    line-height: 250px; /*height kadar*/
}
.yaziyiortala{
    text-align:center;
}
.yuvarla {
    border-radius: 10px;
}
.parlat 
   

{
    display: inline-block;
    border: 0;
   
    position: relative;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
}

.parlat:hover {
    filter:brightness(%200);
    box-shadow: 0px 0px 150px black;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.1);
   
    -ms-transform: scale(1.1);
    -moz-transition: all 200ms ;
    -moz-transform: scale(1.1);
    transition: all 200ms ease-in;
    transform: scale(1.1);
}
.büyüt:hover {
    filter: brightness(%200);
    
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transition: all 200ms;
    -moz-transform: scale(1.1);
    transition: all 200ms ease-in;
    transform: scale(1.1);
}
.cardfoto{
    width:100%;
    height:50px;

}
.a {
    background-image: linear-gradient( to right, #000, whitesmoke 50%, #0094ff 50% );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

    .a:before {
        content: '';
        background: #0094ff;
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.3s ease-in-out;
    }

    .a:hover {
        background-position: 0;
    }

        .a:hover::before {
            width: 100%;
        }

    
