.mods {
    text-align: center;
}
.mod {
    height: 20vh;
    width: 98%;
    background-color: #000a;
    border: 2px solid white;
    display: inline-flex;
    margin-bottom: 1vh;
}
.icon {
    flex: 20vh;
}
.info {
    flex: calc(100% - 20vh);
    display: flex;
    flex-direction: column;
}
.title, .desc, .link {
    flex: 1;
}
.visualText {
    font-size: 4vh;
}
.visualDesc {
    font-size: 2vh;
}
@media screen and (orientation: portrait) {
    .visualText {
        font-size: 3vh;
    }
    .visualDesc {
        font-size: 1vh;
    }
}