* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*The box-sizing property is used to tell the browser what the sizing properties (width and height) should include border-box.*/
  box-sizing: border-box;
  /*reset Chrome user agent styles*/
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-before: 0px;
  -webkit-padding-after: 0px;
  -webkit-padding-start: 0px;
  -webkit-padding-end: 0px;
}
body {
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
}
.background {
  background-color: none;
}
nav {
  position: fixed;
  width: 100%;
  background-color: #000000;
  padding: 15px;
  top: 0;
  z-index: 1000;
}
nav ul {
  float: right;
  list-style: none;
}
nav li {
  display: inline-block;
  padding-right: 15px;
  padding-top: 10px;
  font-size: 1rem;
}
nav li a {
  text-decoration: none;
  color: white;
}
nav li a:hover {
  border-bottom: 2px solid #ff34d2;
}
nav h1 {
  text-align: left;
  color: white;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  position: left;
  bottom: 1rem;
  right: 1rem;
}
.section-container {
  background-color: none;
}
section h2, section h3, section h4, section h5, section h6, p {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
a:link {
  color: #5b9dff ;
  background-color: none;
  text-decoration: none;
}
a:active {
  color: #ff34d2;
  background-color: none;
  text-decoration: none;
}
.banner {
  height: 100vh;
  display: grid;
  place-items: center;
  background-image: linear-gradient(
    to bottom right,
    #26c7a9 0%, #5b9dff 40%, #d06bff 60%, #ff34d2 100%
  );
  background-size: 200% 200%;
  animation: movingGradient 5s linear infinite alternate;
}
.banner p {
  text-align: center;
}
.skills {
  background-color: #5b9dff;
}
.logo-container {
  display: flex;
  flex-direction: row;
  text-align: center;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo:hover {
  border-style: solid;
  border-color: whitesmoke;
}
.servicenow-logo {
  margin-left: 100px;
}
.projects {
  background-color: #5b9dff;
  display: flex;
  flex-direction: row;
  text-align: center;
}

.fa-laptop-code:active {
  color: #ff34d2;
  background-color: none;
  text-decoration: none;
}
.project-item h3 {
 text-decoration: underline;
 margin-bottom: 0px;
}
.contact {
  background-color: #5b9dff;
}
.form-input, .contact-icons{
  display: grid;
  place-items: center;
}
footer {
  text-align: center;
  background-color: #060731;
  color: white;
  display: block;
  clear: both;
  font-size: .8rem;
  padding: 10px;
}
#contact form {
  width:100%;
}
#contact form input {
  width:96%;
  margin:20px 1%;
  background:transparent;
  border:0px;
  border-bottom:3px solid rgba(255, 44, 90,0.5);
  padding:8px 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  transition:0.4s ease-in-out;
  color:#000;
  font-weight:bold;
}
#contact form textarea {
  width:96%;
  margin:20px 1%;
  padding:8px 10px;
  border:0px;
  border-bottom:3px solid rgba(255, 44, 90,0.5);
  padding:8px 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  background:transparent;
  resize:none;
  transition:0.4s ease-in-out;
  color:#000;
  font-weight:bold;
}
#contact form input:focus {
  outline:none;
  border-bottom:3px solid rgba(255, 44, 90,1);
}
#contact form textarea:focus {
  outline:none;
  border-bottom:3px solid rgba(255, 44, 90,1);
}
.send-button {
  background-color: rgba(255, 44, 90,0.5);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 55px;
  width: 130px;
}
.send-button:hover {
  background-color: rgba(255, 44, 90);
}
.fa-laptop-code, .fa-file-code, .fa-linkedin, .fa-github-square {
  color: #7a0dad;
}
.fa-laptop-code:hover, .fa-file-code:hover, .fa-linkedin:hover, .fa-github-square:hover{
  color: rgb(255, 44, 90);
}
@keyframes movingGradient {
  from { background-position: 0 0; }
  to   { background-position: 100% 100%; }
}

/* -------- Media Query --------*/

@media all and (max-width: 700px) {
  nav {
    position: sticky;
  }
  nav ul {
    float: none;
    list-style: none;
    text-align: center;
    padding-left: 10px;
  }
  nav h1 {
    text-align: center;
  }
  .logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  .logo{
    width: 50%;
  }
  .js-logo, .html-logo, .css-logo, .react-logo, .Nodejs-logo, .PostgreSQL-logo {
    margin-left: 10px;
  }

}