
body {
  background-color: rgba(0, 0, 0, 0.6);
}

.navbar {
  background-color: rgba(0, 0, 0, 0.8);
}

.jumbotron {
  background-color: rgba(0, 0, 0, 0);
}

.info {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  height: 50%;
  padding: 0 2rem;
}

.my-image {
  border-radius: 50%;
  margin-top: 1rem;
}

.skills {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
  height: 50%;
}

.skills i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 5rem;
  margin: 1rem 0;
  padding: 0 2.5rem;
  width: 25%;
  height: 25%;
}

.skills i:hover {
  color: #007bff;
}

@media (max-width: 500px) {
    .skills {
      /* On small screens, we are no longer using row direction but column */
      flex-direction: row;
      align-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      margin-right: 1.56rem;
    }

    .skills i{
        font-size: 3rem;
    }
  }

.resume{
    color: white;
    background-color: none;
    border: 2px solid #007bff;
    margin-bottom: 1rem;
}

.resume:hover{
    background-color: #007bff;
    color: white;
    border: 2px solid white;
}

#projects {
  margin-top: 6rem;
  margin-right: 50px;
  margin-left: 50px;
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
/*   border: 2px solid #007bff; */
  margin: 1rem 1rem;
}

.card-title {
  color: #007bff;
  font-weight: bold;
  margin-top: 10px;
}

.card-text {
  color: black;
}

.card a {
  margin-bottom: 20px;
  margin-right: 100px;
  margin-left: 100px;
  border: 1px solid #007bff;
  color: #007bff;
}

.card a:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: #007bff;
}

@media (max-width: 1500px){
    .card a{
        margin-bottom: 20px;
        margin-right: 60px;
        margin-left: 60px;
    }
}

@media (min-width: 577px) and (max-width: 1499px){
    .card a{
        margin-bottom: 20px;
    }
}

@media (max-width: 500px){
    .card a{
        margin-bottom: 20px;
        margin-right: 30px;
        margin-left: 30px;
    }
}

.footer-dark {
    padding:50px 0;
    color:#f0f9ff;
    background-color: #141414;
    margin-top: 12rem;
  }
  
  .footer-dark h3 {
    margin-top:0;
    margin-bottom:12px;
    font-weight:bold;
    font-size:16px;
  }
  
  .footer-dark ul {
    padding:0;
    list-style:none;
    line-height:1.6;
    font-size:14px;
    margin-bottom:0;
  }
  
  .footer-dark ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.6;
  }
  
  .footer-dark ul a:hover {
    opacity:0.8;
  }
  
  @media (max-width:767px) {
    .footer-dark .item:not(.social) {
      text-align:center;
      padding-bottom:20px;
    }
  }
  
  .footer-dark .item.text {
    margin-bottom:36px;
  }
  
  @media (max-width:767px) {
    .footer-dark .item.text {
      margin-bottom:0;
    }
  }
  
  .footer-dark .item.text p {
    opacity:0.6;
    margin-bottom:0;
  }
  
  .footer-dark .item.social {
    text-align:center;
  }
  
  @media (max-width:991px) {
    .footer-dark .item.social {
      text-align:center;
      margin-top:20px;
    }
  }
  
  .footer-dark .item.social > a {
    font-size:20px;
    width:36px;
    height:36px;
    line-height:36px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    box-shadow:0 0 0 1px rgba(255,255,255,0.4);
    margin:0 8px;
    color:#fff;
    opacity:0.75;
  }
  
  .footer-dark .item.social > a:hover {
    color: #007bff;
    opacity:0.9;
    box-shadow: 0 0 0 1px #007bff;
  }
  
  .footer-dark .copyright {
    text-align:center;
    padding-top:24px;
    opacity:0.3;
    font-size:13px;
    margin-bottom:0;
  }