.yama_kartlari{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.yama{
    width: 350px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.yama p{
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #1E90FF;
    font-size: 24px;
    font-weight: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.yama:hover p{
    opacity: 1;
}

.yama:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #1E90FF;
}

.daha_fazla{
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 24px;
    margin: 50px;
}

.daha_fazla:hover{
    background-color: #445775;
    box-shadow: 0 0 25px #0F172A;
    border: 1px solid transparent;
    box-shadow: 0 0 25px #586583;
}