.content-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100% - 6rem);
    top: 6rem;
}

.inner-content-container {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-content-container h1 {
    width: 100%;
    margin: -1.5rem 0;
}

.inner-content-container h2 {
    width: 100%;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 .75rem 0;
}

.inner-content-container p {
    width: 100%;
    margin: .75rem 0 2.5rem 0;
}

.item-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.item {
    width: 23rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem;
    position: relative;
    background: #111;
    flex-wrap: wrap;
    border-radius: .3rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #222;
    gap: 1rem;
}

.music {
    min-height: 12.5rem;
}

.computer {
    min-height: 10rem;
}

.info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.cover {
    width: 4rem;
    height: 4rem;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

.cover1 {
    background: linear-gradient(-45deg, #2a7fff 0%, #d400ff 50%, #ff0000 100%);
}

.cover2 {
    background: linear-gradient(-45deg, #2a7fff 0%, #00ff2a 100%);
}

.cover3 {
    background: linear-gradient(-45deg, #ff8a00 0%, #e52e71 100%);
}

.title {
    font-size: 1.3rem;
}

.description {
    font-size: .9rem;
    line-height: 1.3rem;
    text-align: justify;
}

.spacer {
    width: 100%;
    height: 0rem;
}

.bottom-spacer {
    width: 100%;
    height: 2.5rem;
}