html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Oxygen', sans-serif;
}
.main-screen-text{
  padding: 0;
  margin: 0;
  font-size: 7vw;
  text-align: center; 
}
a{
  text-decoration: none;
  color: whitesmoke;
}

/* START SECTION -HOME- */
#home {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%);

  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: center;
}
.middle {
  text-shadow: 1px 1px 5px #133 ;
  color: whitesmoke;
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  z-index: 1;
  /* border: 2px solid black; */
}

#particles-js{
  position: absolute;
  width: 100%;
  height: 100%;
}

.navbar {
  background-color: rgb(37, 37, 37);
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0.8;
}

.navbar a {
  /* height: 75px;   */
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  padding: 14px 50px;
  font-size: 18px;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}
.navbar a.active {
  background-color: #15e01c;
  color: white;
}

.navbar .icon {
  display: none;
  background-color: rgb(37, 37, 37);
  
}

@media screen and (max-width: 620px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 620px) {
  .navbar.responsive {
    position: fixed;
    margin-bottom: 40px; 
  }
  .navbar.responsive .icon {
    position: fixed;
    right: 0;
  }
  .navbar.responsive a {
    display: block;
    padding: 10px 0;
    width: 100%;
  } 
 
}
/* END SECTION -HOME- */
/* START SECTION -ABOUT- */
#about {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to bottom, #6a85b6 0%, #bac8e0 100%);
  text-align: center;
  text-shadow: 1px 1px 5px #121;  
}
#about h1{
  color: whitesmoke;
  margin-top: 60px;
  font-size: 7vw;
} 

#about .text-about-me{
  /* text-shadow: 1px px 1px white;  */
  text-shadow: none;
  color: rgba(0, 0, 0, 0.644);
  border: 10px double darkslategrey;  
  border-radius: 15px;
  margin: 10px 15%;
  padding: 1%;
  /* width: 60%; */
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
  background-image: linear-gradient(to top, #6a85b6 0%, #bac8e0 100%);
  
} 
@media screen and (max-width: 900px) {
  #about .text-about-me{
    margin: 0;
    border: 2px solid slategray;
    font-size: 1.2rem;
  }
}
 
/* END SECTION -ABOUT- */
/* START SECTION -PROJECTS- */

#projects {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  height: 110vh;
  width: 100%;
  color: white;
  background-image: linear-gradient(to top, #243949 0%, #517fa4 100%);
}
#projects h1 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  
}
.img-carousel {
  
  margin-left: 16%;  
  margin-right: 16%;
  /* margin: 0 auto; */
}
.img-carousel a {
  color: white;
  text-decoration: none;
}
.img-carousel a img {
  height: 200px;
  width: 220px;
  object-fit: cover;
}
.img-carousel a img:hover{
  box-shadow: 0 0 25px yellow;
}


#keyframes{
  width: 100%;
  height: 100%;;
}
.square{
  height: 15px;
  width: 15px;
  background-color:peru; 
}

/* Footer */

#contact h1{
  padding: 10px 0;
  margin: 0;
}

footer{
  padding-bottom: 20px; 
  word-spacing: 3px;
  display: block;
  text-align: center;
  color: wheat;
  background-color: rgba(24, 20, 34, 0.877)
}
.footerSocNet {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 20px 0; 
  
}
.social-img {
  width: 50px;
  height: 50px;
  filter: grayscale(100%);
  padding: 0 10px;
  border-radius: 50%;
}
.social-img:hover{
  filter: grayscale(0);  
}

/* end of Footer */