p {
    margin-top: 1px;
    margin-bottom: 1px;
    text-align: center;
}

.external-container {
    padding-left: 10px;
    padding-right: 10px;
}

.flex-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h4 {
    color: #769fa0;
    text-align: center;
}

h2 {
    text-align: center;
}

h3 {
    color: #75a0a1;
    text-align: center;
    margin-top: 10px;
}

.highlights-container {
    margin-top: 5%;
}

.highlights {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-evenly;
    padding: 10px;
    margin-top: 0px;
}

.highlight-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 0.8px solid rgba(159, 53, 88, 0.412);
    border-radius: 20px;
    width: 100%;
    min-height: 500px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    box-shadow: 2px 2px 25px rgb(21, 19, 31), -2px -2px 4px rgba(255, 56, 122, 0.412);
    transition: 0.5s;
}

#item1 {
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(42, 18, 68, 0), rgba(42, 18, 68, 0.7), rgb(42, 18, 68, 1)), url("/img//3d/room-desk-2-small.png");
}

#item2 {
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(42, 18, 68, 0), rgba(42, 18, 68, 0.7), rgb(42, 18, 68, 1)), url("/img/games/dreamspaces-small.png");
}

#item3 {
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(42, 18, 68, 0), rgba(42, 18, 68, 0.7), rgb(42, 18, 68, 1)), url("/img/games/reclaiming/reclaiming-level1-small.png");
}

.highlight-title {
    margin-bottom: 3px;
}

.highlight-description {
    margin-bottom: 10px;
}

.highlight-item:hover {
    box-shadow: 2px 2px 25px rgb(21, 19, 31), -2px -2px 4px rgba(255, 56, 122, 0.737);
    transform: scale(1.05);
    transition: 0.4s;
}