/* Laptop/Desktop styles go at the top of your file */





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    font-size: 14px;
    font-family: 'helvetica', Arial, Helvetica, sans-serif, monospace;
    color: hsl(0, 0%, 0%);
    background-color: hsl(193, 88%, 71%);
    margin:20px;
    margin-top: 500px;
    text-align: center;
}
body {
    font-family: 'helvetica', Arial, Helvetica, sans-serif, monospace;
    background-color: hsl(193, 100%, 83%);
    color: hsl(23, 100%, 50%);
    font-size: 20px;

}
.text {
    text-align: center;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
    font-size: 40px;
    font-weight: bold;
}

.text:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-around;
    font-size: 25px;
    background: linear-gradient(to right, hsl(193, 95%, 69%), hsl(312, 89%, 85%),hsl(193, 95%, 69%), hsl(312, 89%, 85%));
    width: 100%;
    padding: 120px;
    background-size: 400% 400%;
    animation: gradientMovement 12.5s ease infinite;
    margin-top: 100px;
    border: 2px solid hsl(23, 100%, 50%);
}

.img1 {
    display: block;
    width: 300px;
    margin-right: 50px;
}

.img1:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.text2 {
    padding-top: 300px;
    text-align: center;
    font-size: 20px;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
    color: hsl(0, 29%, 18%);
}

.about {
    text-align: center;
    font-size: 25px;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
    color: hsl(23, 100%, 50%);
    margin-top: 100px;
    padding-top: 125px;
}

.makerworld{
    color: hsl(193, 100%, 83%);
    display: inline-block;
    border-radius: 50px;
    background-color: hsl(23, 100%, 50%);
    text-decoration:none;
    padding: 15px;
    font-size: 25px;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
}
.makerworld:hover {
    color: hsl(193, 100%, 83%);
    text-decoration:none;
    background-color: hsl(235, 90%, 30%);
    border-radius: 50px;

}

.projects {
    text-align: center;
    font-size: 25px;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
    color: hsl(23, 100%, 50%);
    margin-top: 100px;
    padding-top: 150px;
    border-top: 2px solid hsl(23, 100%, 50%);
}

a {
    color: hsl(23, 100%, 50%);
    text-decoration: none;
    padding: 10px;

}

nav a:hover {
    color: hsl(193, 100%, 83%);
    text-decoration: none;
    background-color: hsl(23, 100%, 50%);
    border-radius: 20px;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px;
    padding-top: 50px;

}

.project:hover {
     transform: scale(1.03);
    transition: transform 0.3s ease;

}

.project-container img {
    width: 300px;
    padding: 12.5px;
    border-radius: 20px 20px 0 0;
    background-color: hsl(193, 74%, 70%)

}

.project-container p {
    font-size: 20px;
    padding: 12.5px;
    padding-bottom: 27px;
    background-color: hsl(193, 74%, 70%);
    border-radius: 0 0 20px 20px;
    font-weight:bold;
    color: hsl(187, 56%, 14%)

}

li {
    list-style: none;
    font-size: 20px;
    font-family: oloo, Arial, Helvetica, sans-serif, monospace;
}
nav {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 100px;
    left: 0;
    width: 100%;
    position: fixed;
    background-color:hsl(193, 89%, 72%);
   z-index: 1000;
   top: 0;
   padding-bottom: 20px;
   padding-top: 20px;
   border: 2px solid hsl(23, 100%, 50%);

}

@keyframes gradientMovement {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.loading_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading {
  color: hsl(23, 100%, 50%);
  font-family: oloo, Arial, Helvetica, sans-serif, monospace;
  font-size: 25px;
  font-weight: bold;
  margin-top: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(100, end) infinite, blink-caret 0s step-end infinite;
}


.github:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;

}



.insta:hover {
 transform: scale(1.2);
    transition: transform 0.3s ease;

}
.youtube:hover {
transform: scale(1.2);
    transition: transform 0.3s ease;
}

.Socialss {
    display: flex;
    justify-content: center;
    align-items: center;



}

.Socialss img {
    width: 150px;
    margin-top: -35px;


}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00ffcc; }
}



@media screen and (max-width: 768px) {

    .desktop-br {
        display: none;

    }

    body {
        overflow-x: hidden ;

    }
    nav {
        gap: 20px;
        flex-wrap: wrap;
        padding: 15px;
    }

    nav a {
        font-size: 16px;
    }

    .container {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 30px;
    }

    .img1 {
        width: 90%;
        max-width: 300px;
        margin: 0;
    }

    .text {
        font-size: 20px;
    }

    .text2 {
        padding-top: 60px;
        font-size: 18px;
    }

    .loading {
        font-size: 22;

    }

    .aboutmetext{
        font-size: 22px;
        width: 80%;
        text-align:start;
        margin-left: auto;
        margin-right: auto;
        
    }

    .projects {
        font-size: 20px;
        padding-top: 80px;
    }

    .projectstext {

        font-size: 22px;
    }


    .project-container {
        gap: 30px;
        padding: 30px 10px;
    }

    .project-container img {
        width: 100%;
        max-width: 300px;
    }

    .github,
    .insta,
    .youtube {
        width: 80px;
        margin: -17px;
        display: inline;
    }

    .footer {
        margin: 30px 10px;
        font-size: 14px;
    }

    body {
        font-size: 18px;
    }
}
.site-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}