@charset "utf-8";

*
{
    box-sizing: border-box;
}

body
{
    width: 100%;
    margin: 0;
    padding: 0;
    
}

#wrap
{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

h1
{
    width: 99%;
    margin: 0.5%;
    padding: 15px 0;
    background-color: #66cc99;
    text-align: center;
    line-height: 1;
    font-size: 25px;
}

h2
{
    width: 99%;
    margin: 0.5%;
    padding: 5px 10px;
    border-left: 3px solid #66cc99;
    font-size: 20px;
}

div.link-list
{
    width: 99%;
    margin: 30px 0.5% 0 0.5%;
    font-size: 0;
}

div.link-list > a
{
    display: inline-block;
    margin: 0 10px 10px 0;
    font-size: 13px;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}

#wrap > a
{
    display: block;
    width: 24%;
    margin: 0.5%;
    padding: 5px;
    color: #000;
    background: white;
    border-top: solid 3px #66cc99;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
}

img
{
    max-width: 100%;
    height: auto;
}

div.features
{
    display: flex;
    flex-wrap: wrap;
}

div.features > span
{
    width: 48%;
    margin: 1%;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #66cc99;
    font-size: 10px;
    color: #FFF;
    font-weight: bold;
    border-radius: 3px;
}

@media (max-width: 750px) {
    #wrap > a
    {
        width: 31.33%;
        margin: 1%;

    }
}

@media (max-width: 560px) {
    h1
    {
        font-size: 20px;
    }

    h2
    {
        font-size: 16px;
    }

    #wrap > a
    {
        width: 48.4%;
        margin: 0.8%;
    }
}

@media (max-width: 360px) {

}