@charset "utf-8";

.questLink{
    display:flex;
    justify-content: center;
    flex-direction:column;
    align-items:center;
    margin:2rem auto;
}

.questLink h3{
    color:#707070;
    font-size: 1.4rem;
    margin:1rem;
}

.questLink ul{
    width: 100%;
    max-width:560px;
    display:flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    list-style:none;
    box-sizing: border-box;
}

.questLink ul li{
    width: 100%;
    max-width:256px;
    box-sizing: border-box;
}

a.redBtn{
    background:#E92D2D;
    box-shadow:0 4px 0 #810F0F;
    border-radius:50px;
    color:#ffffff;
    display: block;
    font-size:1.2rem;
    font-weight:bold;
    margin:4px 0 4px 0;
    padding:1rem 1.5rem;
    text-align: center;
    text-decoration:none;
    width: 100%;
    box-sizing: border-box;
}


@media screen and (max-width:768px) {
    .questLink ul{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    .questLink ul li{
        width:100%;
        max-width:256px;
        margin-bottom:1rem;
    }
}