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

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

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

.box{
    width: 50% !important;
    height: 100%;

    margin: 20px;
    box-sizing: border-box;
    font-size: 50px;
}

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

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

@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;
    }
}

.keret{ 
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);;
}