body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

br {
    display: block;
    margin: 10px 0;
}
.container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    width: 100%;
    padding: 20px;
}
a {
    float: left;
    width: calc((100% - 60px)/2);
    max-width: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.box {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* max-width: 200px; */
    height: auto;
    /* margin: 20px; */
    text-align: center;
    line-height: 1.5;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    color: black;
}
.box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.box i{
    font-size: 50px; 
    margin-bottom: 10px;
}
a {
    text-decoration: none;
}