body{
    background-color: var(--hatter);
}

.container{
    width: 100%;
    height: auto;

    display : flex;
    flex-direction : row;
    justify-content : space-around;
    flex-flow : wrap;
}

.box{
    width: 30% !important;
    height: 300px;
    box-shadow: 0 0 20px 1px rgba(79, 71, 71, 0.1);
    margin: 20px;
    box-sizing: border-box;
    font-size: 50px;
    transition: 0.2s;
}

.kepbox{
    width: 100%;
    height: 60%;
}

.kep{
    width: 100%;
    height: 100%;
}

.szo{
    padding: 20px 0px 10px 40px;
}

p{
    font-size: 25px;
}

span{
    font-size: 15px;
}

.nyil{
    width: 10%;
    float: right;
    margin-right: 20px;
    margin-top: -45px;
}

a{
    color: var(--fekete);
}

.box:hover{
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

@media screen and (max-width: 1200px) {
    .box{
        width: 40% !important;
    }
}

@media screen and (max-width: 1000px) {
    .box{
        width: 40% !important;
    }
}

@media screen and (max-width: 800px) {
    .box{
        width: 70% !important;
    }
}

@media screen and (max-width: 600px) {
    .box{
        width: 80% !important;
    }
}