body, html {
    height: 100%;
  }

.parallax-1 {
    background-image: url("../images/stock-photos/server-room.png");
    
    height: 100%; 

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: grid;
	align-items: center;
    text-align: center;
}

.parallax-1 h1 {
    color: var(--mtc);
    font-size: 500%;
    text-shadow: 0 0 25px var(--dsc);

    font-weight: 300;
    font-style: italic;
}

.parallax-1 p {
    color: var(--mtc);
    font-size: 200%;
    text-shadow: 0 0 25px var(--dsc);
    font-style: italic;
    font-weight: 200;
}
  
.fade {
    animation: fadeInOut 4s linear infinite;
    opacity: 0;
}
  
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
}

.section-2 {
    background: linear-gradient(90deg, var(--ac), var(--sac));
    color: var(--mtc);

    text-align: center;

    padding-top: 20px;
    padding-bottom: 20px;
}

.section-2 h1 {
    font-size: 200%;
    font-weight: 400;
}

.section-2 p {
    margin-top: 1.5%;
    margin-left: 25%;
    margin-right: 25%;

    font-size: 100%;
}

.parallax-2 {
    background-image: url("../images/stock-photos/gaming-session.jpg");
    
    height: 100%; 

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

	align-items: center;
    text-align: center;
}

.parallax-2 h1 {
    padding-top: 7%;
    color: var(--mtc);
    text-shadow: 0 0 25px var(--dsc);
    font-size: 325%;
    font-weight: 300;
}

.cards-and-navigations {
    padding-top: 12.5%;
}

.card-container {
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card.highlighted {
    /* Add your highlighting styles here */
    border: 2px solid red;
}

.card-container::-webkit-scrollbar {
    display: none;
  }

.card {
    flex: 0 0 auto;
    width: 300px;
    background: linear-gradient(180deg, var(--ac), var(--sac));
    color: var(--mtc) ;
    margin: 0 20px;
    padding: 15px;
    border-radius: 8px;
    
    scroll-snap-align: start;
}
  
.card h2 {
    font-weight: 500;
}

.card p {
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 16px;
    font-weight: 300;
    font-style: italic;
    font-size: 125%;

    transition: all 0.1s;
}

.card h3:hover {
    margin-bottom: 10px;
    font-size: 150%;
}

.card img {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.parallax-2 button {
    background: none;
    border: inherit;
}

#left {
    float: left;
    margin-left: 10%;
    margin-top: 275px;
    
}

#right {
    float: right;
    margin-right: 10%;
    margin-top: 275px;
}

#arrows {
    margin: 15px;
    cursor: pointer;

    transition: all 0.1s;
}

#arrows:active {
    transform: scale(0.8);
}

.section-3{
    background: linear-gradient(90deg, var(--ac), var(--sac));
    color: var(--mtc);

    text-align: center;

    padding-top: 20px;
    padding-bottom: 20px;
}

.section-3 h1 {
    font-size: 200%;
    font-weight: 400;
}

.parallax-3 {
    background-image: url("../images/stock-photos/office-with-guy.jpg");

    height: 100%; 

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

	align-items: center;
    text-align: center;

    padding-top: 85px;
}

.small-desc {
    background: linear-gradient(90deg, var(--ac), var(--sac));
    color: var(--mtc);

    padding: 45px;
    margin-left: 85px;
    margin-right: 85px;
    border-radius: 25px;
}

.small-desc p {
    font-size: 20px;
}