/*TODO: Increase Transparency*/
/* .about-me{
    background-color: #ccffff;
}

.projects{
    background-color: #b3ffd9;
}*/

html, body{
    height: 100%;
    margin: 0%;
}

body{
    /*background-color: rgb(255, 255, 153,0.2);*/
    background-color: #FAEEE7;
    padding: 0% 15%;
}

#landing-page .center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .full-height {
    height: 100vh;
  }
  
  #landing-page {
    position: relative;
  }
  
  #landing-page .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(path/to/image.jpg);
    background-size: cover;
    background-position: center;
  }
  
  #landing-page .content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 50%;
    margin: 0 auto;
    margin-left: 10%;
  }

  .title {
    text-align: center;
    font-size: 3rem;
}

.subtitle {
    text-align: center;
    margin-top: 1em;
}

.btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out;
}

.card{
    margin: 1%;
    border-radius: 15px;
    background-color: inherit;
}

.card-tags{
    display: flex;
    flex-wrap: wrap;
}

.tag {
   background-color: #F0F0F0;
   padding: 2px 5px;
   margin-right: 5px;
   font-size: 1.1em;
   color: #333;
   border-radius: 15px;
}

.contact-me-icon{
    background-color: inherit;
    border: none;
}

.full-height{
  height: 100%;
}

.center{
    text-align: center;
}

/* Styling for the navbar container */
.navbar {
  height: 50%;
  width: 10%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  /* padding-top: 60px; */
}

/* Styling for the navbar links */
.navbar a {
  /* padding: 8px 8px 8px 8px; */
  margin: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* Change color of links on hover */
.navbar a:hover {
  color: #333;
  text-decoration-line: underline;
}

/* Add an active class to the current link */
/* .active {
  background-color: #4CAF50;
  color: white;
} */