body {
    background-color: #23272a;
    height: 100vh;
}

.links {
    height: 100vh;

    font-family: 'Open Sans', sans-serif;
}

.h_text {
    display: flex;
    justify-content: center;
    padding: 5% 0;

    color: transparent;
    font-size: 80px;
    font-weight: bold;
    
    -webkit-background-clip: text;

    background-image: linear-gradient(90deg, blue, #4130cc, #5b2ab9, #8b1d96, #9d1987, #b51579);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    transform: translate3d(0, 0, 0);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.list {
    list-style: none;
    width: 80%;
    margin-left: 10%;

    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: space-evenly;
    padding: 0;
    flex-wrap: wrap;

    color: white;
    font-size: 18px;
}

.list_item {
    background-color: rgba(69, 71, 75, 0.5);
    border-radius: 20px;
    padding: 10px;

    max-width: 300px;
    min-width: 300px;
    max-height: 200px;
    min-height: 200px;

    margin: 10px;
}

.list_item_name {
    display: flex; 
    justify-content: center;

    text-shadow: 1px 0 5px cyan, 0 1px 1px #000, -1px 0 1px #000, 0 -1px 1px #000;
}

.list_item_description {
    color: rgba(255, 255, 255, 0.5);
    text-indent: 10px;
    word-wrap: break-word;
}

.list > a {
    color: white;
    text-decoration: none;
}

@media (max-width: 900px) {

    .list {
        flex-direction: column;
    }

}