* {
    box-sizing: border-box;
    padding: 0;
    margin: 0; 
}
 
:root {
    --background-color: #0e0e0e;
    --foreground-color: #222222;
    --light-foreground: #919191;
    --font-color: #d2d2d2;
}


body {
    color: var(--font-color); 
    font-family: 'Poppins', "sans-serif";
    background-color: var(--background-color);
    overflow-x: hidden;
}
 
img {
    max-width: 100%;
    max-height: 100%;
}


/* placeholder */

p {
    color: var(--font-color);
    font-size: 17px;
    font-weight: 500;
}

h1 {
    color: var(--light-foreground);
    font-size: 18px;
    font-weight: 400;
}

h2 {
    color: var(--light-foreground);
    font-size: 22px;
    font-weight: 700;
}


.home {
    position: relative;
    margin: 30px 2%;
    padding: 0px 5%;
    i {
        color: var(--font-color);
    }
}

.home a#theHome{
    color: var(--background-color);
}

#left {
    position: fixed;
    left: 0;
    padding-left: 22px;
    top: 50%;
    color: var(--foreground-color);
    transition: color 0.3s ease;
}

#right {
    position: fixed;
    right: 0;
    top: 50%;
    padding-right: 22px;
    color: var(--font-color);
    transition: color 0.3s ease;
}

.projects-all {
    display: flex;
    flex-direction: column;
    padding: 0% 2%;
    margin: 0% 5%;
    gap: 3rem;
}

.projects-all .slider {
    display: flex;
    position: relative;
    height: 50px;
    border-radius: 10px;
    background-color: var(--foreground-color);
    align-items: center;
    justify-content: space-around;
}

.projects-all .slider .empty-spaces {
    position: relative;
    height: 12px;
    width: 15rem;
    background-color: var(--background-color);
    border-radius: 10px;
    cursor: pointer;
}

.projects-all .slider .moving-bar {
    position: absolute;
    height: 12px;
    width: 15rem;
    background-color: var(--light-foreground);
    border-radius: 10px;
    transition: left 0.3s ease;
    left: 0; 
}

.project-body {
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 10%;
    transition: transform 0.3s ease;
}

.project-body > div {
    flex: 0 0 100%; 
    border-radius: 10px;
    background-color: var(--foreground-color);
}

.title {
    display: flex;
    justify-content: center;
    color: var(--light-foreground);
    font-size: 35px;
    padding: 15px 0px;
    font-weight: 600;
    width: 100%;
}


.utility {
    display: flex;
    flex-direction: column;
    margin: 15px 35px;
}

.utility-images img {
    width: 25%;
    margin: 12px 25px;
}

.utility-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 25px 0px;
}

.heading {
    margin: 25px 0px;
}

.overview-text {
    width: 80%;
    margin-bottom: 45px;
    align-self: center;
    text-align: center;
}

.dis-images {
    display: flex;
    justify-content: space-between;
}

.dis-images img {
    width: 47%;
}

.heading-title {
    width: 100%;
    text-align: center;
    margin: 25px 0px;
}

.img-example{
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-example img{
    width: 70%;
}

.iosIMG {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.iosIMG img{
    width: 30%;
}
