/* You can add custom CSS and extend Boostrap styles in this file. Remember, Bootstrap is just CSS at the end of the day! */
.nav-item {
  margin-right: 20px;
}

#hero-section {
  height: 600px;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.85)), url("https://dtphx.org/wp-content/uploads/2021/08/Skyline-Day.png");
  background-position: center, center;
  background-size: cover, cover;
}

#hero-section img {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30%;
  width: 175px;
  height: auto;
  border-radius: 100px;
  border: solid rgba(0, 0, 0, .4) 12px;
}

.text-container {
  position: absolute;
  top: 450px;
  text-align: center;
  width: 100%;
}

#mission-section {
  background-color: #000c16;
  color: whitesmoke;
  height: 60vh;
  padding: 30px 0;
}

#mission-section h2 {
  margin-top: -30px;
  padding: 30px;
}

#mission-section img {
  max-width: 80%;
  min-width: 20%;
  height: auto;
  margin-bottom: 20px;
}

#mission-section .row {
  margin-bottom: 40px;
  align-items: center;
}

#mission-section .col-md-6 img {
padding: 0;
}

@media (max-width: 767.98px) {
  #mission-section {
    height: auto; 
  }
}

#skills-section {
  background-color: #0d5ad8;
  color: black;
  height: 60vh;
  padding: 30px 0;
}

#skills-section h2 {
  margin-bottom: 40px;
  margin-top: 80px;
}

#skills-section #html {
  max-width: 11.46vw;
  height: auto;
  margin: -25px auto;
  display: block;
}

#skills-section #css {
  max-width: 6.25vw;
  height: auto;
  margin: auto;
  display: block;
}

#skills-section #bootstrap {
  max-width: 12.5vw;
  height: auto;
  margin: -50px auto;
  display: block;
}

#skills-section #java {
  max-width: 8.33vw;
  height: auto;
  margin: auto;
  display: block;
}

#skills-section .container {
  display: flexbox;
  padding: 20px;
  margin-bottom: 140px;
}

#skills-section p {
  margin-top: 15px;
  font-size: 13px;
}

@media (max-width: 767.98px) {
  #skills-section {
    height: auto; 
  }
  #skills-section #html {
    margin: -25px auto -10px auto;
  }
  #skills-section #bootstrap {
    margin: -10px auto -10px auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #skills-section #html {
    margin-bottom: -10px;
  }
  #skills-section #css {
    margin-top: -15px;
  }
  #skills-section #bootstrap {
    margin-top: -20px;
  }
  #skills-section #java {
    margin-top: -10px;
  }

#skills-section #boot {
  margin: 40px auto;
  }
}

@media (min-width: 1024px) {
  #skills-section #bootstrap {
    margin-top: -30px;
    margin-bottom: -30px
  }
  #skills-section #html {
    margin-top: -5px;
  }
}

#contact-section {
  background-color: #000c16;
  color: whitesmoke;
  height: 60vh;
  padding: 30px 0;
}

#contact-section h2 {
  margin-top: 20px;
  margin-bottom: 80px;
}

#contact-section .container {
  font-size: 50px;
  margin: 40px auto;
}

#contact-section .icon {
  transition: color 0.3s ease, font-size 0.3s ease;
}
  
#contact-section .icon:hover {
  font-size: 55px;
  color: #0d5ad8
}

#footer-section {
  position: fixed;
  bottom: 0;
  padding: 10px;
  padding-top: 20px;
  width: 100%;
  background-color: rgb(25, 25, 25);
  color: white;
  text-align: center;
  font-size: 15px;
}