main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.icon{
    position: relative;
    width: 300px;
    height: 400px;
    margin: 3% auto 3% ;
    overflow: hidden;
    min-width: 310px;
}

.icon img{
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 5px);
}

.caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    background-color: rgba(40, 40, 40, 0.7);
    opacity: 0;
    color: #fff;
    padding: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(100%);
    pointer-events: none;
}

.icon:hover .caption{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.CN{
    margin: 0.3em;
    font-style: oblique;
    font-size: smaller;
}

.name{
    margin: 0.3em;
}

.caption a{
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
}

.box{
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 300px;
    height: 100px;
    background-color: rgb(71, 71, 71);
    z-index: 1;
    pointer-events: none;
}

.border{
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 5px);
    border: solid #000;
    pointer-events: none;
}

#kurea{
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #a12879;
}

#kizuna{
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0e1e7a;
}