.container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    margin-bottom: 200px;
}

.head {
    display: inline-block;
    position: relative;
    font-size: 32px;
    font-weight: 500;
}
.head::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0px;
    height: 3px;
    width: 50%;
    background: var(--gradient);
}

.grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0px;
}

.link {
    color: var(--celebrityschool-purple);
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 975px) {
    .link {
        font-size: 14px;
    }
    .head {
        font-size: 28px;
    }
}

@media screen and (max-width: 800px) {
    .head {
        font-size: 20px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .link p {
        line-height: 1.4rem;
    }
}
