@media (max-width: 768px) {
    #specs {
        width: 100%;
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    #specs {
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#specs {
    margin: auto;
}

.tipus {
    color: yellow;
}

.tipus:hover {
    color: white !important;
}

.list {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.list h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-left: 30px;
}

.list ul {
    position: relative;
}

.list ul li {
    position: relative;
    left: 0;
    color: #fce4ec;
    list-style: none;
    border-left: 2px solid #ff863f;
    transition: 0.3s;
    cursor: pointer;
}

.list ul li span {
    position: relative;
    padding: 3px;
    padding-left: 1px;
    display: inline-block;
    z-index: 1;
    transition: 0.1s;
}

.list ul li:hover .spec {
    color: black;
}

.list ul li:hover .tipus {
    color: white;
}

.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff863f;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.list ul li:hover:before {
    transform: scaleX(1);
}

h1 {
    text-align: center;
    font-size: 40px;
        background: linear-gradient(
            to right,
            white 0%,
            rgb(238, 229, 130) 20%,
            rgb(185, 255, 244) 40%,
            white 80%,
            rgb(238, 229, 130) 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 500% auto;
        animation: shine 5s ease-in-out infinite ;
}

@keyframes shine {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
}