*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
    scroll-behavior: smooth;
}
body{
    background-color: #ffffff;
}
#header{
grid-template-columns: 1fr;
display: grid;
background-color:#FFC18A;
padding: 20px 0px;
}
#about{
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 10px;
    padding: 10px;
}
#landing_image{
    height: 100%;
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    animation: fadeIn 2s;

}
nav{
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    justify-items: center;
    padding: 10px;
    background-color: #FFC18A;
}
#name_of_555{
    color: white;
    text-align: center;
    padding: 10px;
}
#logo{
    height: 50%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    width: 60%;
}
a{
    color: white;
    text-decoration: none;
}
li{
    list-style-type: none;
}
#About{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    background-color: #d78b44;
    align-items: center;
}
#prototype{
    gap: 10px;
    padding: 10px;
    justify-content: center;
    background-color: #d78b44;

}

#Process{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 10px;
    justify-content: center;
    background-color: #d78b44;
    padding-top: 25px;

}
#Results{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    background-color: #d78b44;
    justify-content: center;

}
.solid{
    border: 1px solid white;
    padding: 2px;
}
#last_images{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    justify-items: center;
    background-color: #d78b44;

}

footer{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    justify-items: center;
    background-color: #FFC18A;
}
.final{
    width: 50%;
}
h2{
    color: white;
    padding: 10px;
     font-size: 50px;
}
h3{
    color: white;
    padding: 10px;
}
p{
    color: white;
    padding: 10px;
    line-height: 35px;
}
li {
    color: white;
    padding: 10px;
}
#figma{
    width: 100%;
    padding: 15px;
    border-radius: 60px;
    box-shadow: 0px 4px 10px white;
}
.sketches{
    width: 100%;
    border-radius: 10px;
    gap: 20px;
}
#sketch{
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 10px;
 
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadein {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fadein.visible {
    opacity: 1;
}





#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #ffffff;
    z-index: 100;
    transition: width 0.2s ease;
}




.final,
.sketches,
#figma {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.final:hover,
.sketches:hover,
#figma:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.8);
}




nav a {
    position: relative;
    transition: color 0.3s ease-in-out;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav a:hover::after {
    width: 100%;
    left: 0;
}



@media screen and (max-width: 768px) {
    #about {
        grid-template-columns: 1fr;
    }
    #logo {
        width: 100%;
    }

    #About {
        grid-template-columns: 1fr;
        
    }

    #Process {
        grid-template-columns: 1fr;
    }

    #last_images {
        grid-template-columns: 1fr;
    }
    .final {
        width: 100%;
    }

    #figma {
        width: 100%;
    }

    #sketch {
        grid-template-columns: 1fr;
    }

    #progress-bar {
        height: 3px;
    }
}