header {
    text-align: center;
    padding: 10px;
    margin: 10px;
}

#visszalink {
    width: 100px;
    height: 50px;
    color: rgb(255, 120, 0);
    text-decoration: none;
    background: black;
    position: relative;
}

.szolgfelsorolas {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
    gap: 10px;
    height: 172px;
    overflow-x: auto;
    border: 1px solid rgb(255, 120, 0);

    /* árnyékolás */
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
}

.szolgfelsorolas::before,
.szolgfelsorolas::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.szolgfelsorolas::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .6), transparent);
}

.szolgfelsorolas::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, .6), transparent);
}

.szolgok {
    text-align: center;
    flex: 0 0 auto;
    width: 400px;
    height: 150px;
    border: 1px solid rgb(255, 120, 0);
    border-radius: 10px;
    cursor: pointer;
}

#preziContent {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    margin: 50px auto;
    max-width: 60%;
    color: antiquewhite;
    border: 1px solid rgb(255, 120, 0);
    box-shadow: 0 0 20px rgb(255, 120, 0);
}