.icon-back  {
    opacity: 0;
    transition: 400ms;
}

a {
    color: inherit !important;
    
    text-decoration: none;
}


.homepage {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    height: 100vh;
    margin: 20px;
}

.cover {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(60vh, 1fr));
    margin-bottom: 2em;
    color: white;
    width: -webkit-fill-available;
}

.coverbox:nth-child(even) {
  background-color: #ccc;
  color: #000;
  min-height: 200px;
}

.coverbox {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 150%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}