* {
    font-family: "Raleway";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(#3c79a8, hsl(307, 70%, 63%));
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#4016b3, #ff22e6);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#8863ee, #e852d7);
}

.sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
}

.container {
    height: 100vh;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: auto;
}

.parallax {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateZ(-1px) scale(2);
}

.bg-1 {
    background: url("/orange.jpeg");
    background-size: cover;
    background-position: center;
    position: absolute;
}

.bg-2 {
    background: url("/lemon.jpg");
    background-size: cover;
    background-position: center;
}

.bg-3 {
    background: url("/apple.jpg");
    background-size: cover;
    background-position: center;
}

.normal {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

h1 {
    margin: 0 auto;
    width: 90%;
    font-size: 130px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    word-spacing: 100vw;
    text-align: center;
    text-transform: uppercase;
}

.parallax h1 {
    color: #fff;
    text-shadow: 0 10px  10px rgba(0, 0, 0, 0.18);

}

.parallax:nth-child(1) h1 {
    text-align: left;
}

.normal h1 {
    color: #333;
}

/* slidebars */

.social ul li {
    list-style-type: none;
}

.social ul li a {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    margin-left: -120px;
    transition: margin-left 500ms;
    opacity: 0.42;
}
.social ul li a:first-child:hover {
    padding-left: 15px; 
}
.social ul li:nth-child(2) a:first-child:hover {
    padding-left: 10px;
    font-size: 25px;
}

.social ul li:nth-child(3) a:first-child:hover {
    padding-left: 35px;
    font-size: 25px;
}

.social ul li:nth-child(5) a:first-child:hover {
    padding-left: 30px;
    font-size: 25px;
}
.social ul li a:hover {
    margin-left: 0;
    padding-left: 18px;
    font-size: 25px;
    transition: all ease 0.8s;
    opacity: 2;
}


.social ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-size: 28px;
}


.facebook {
    background: #0572e6;
}

.instagram {
    background: linear-gradient(to bottom, #fd0070, #feb200 );
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.github {
    background: #03042a;
}
.youtube {
    background: #ff0101;
}



@media (max-width: 767px) {
    .sidebar {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 3;
    }
    h1 {
        font-size: 60px;
    }
    .parallax h1 {
        font-size: 80px;
        padding-left: 50px;
    }
}