@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

* {
    box-sizing: border-box;
  }
  
  body {
    background-color: #f1f1f1;
    padding: 20px;
    font-family: 'Lato', sans-serif;
  }
  
  /* Center website */
  .main {
    max-width: 1000px;
    margin: auto;
  }
  
  h1 {
    font-size: 50px;
    word-break: break-all;
  }
  
  .row {
    margin: 10px -16px;
  }
  
  /* Add padding BETWEEN each column */
  .row,
  .row > .column {
    /* padding: 8px; */
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    display: none; /* Hide all elements by default */
  }
  
  /* Clear floats after rows */ 
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    /* background-color: white; */
    /* padding: 10px; */
    position: relative;
    text-align: center;
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #ddd;
  }
  
  .btn.active {
    background-color: #666;
    color: white;
  }

  .portfolio-work-container {
    padding: 20px 0 0 0;
    /* display: flex; */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 120px;
  }
  .example-work-container {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: rgb(207, 17, 33);
    width: 200px;
    height: 200px;
  }
  .example-work-container img {
    max-width: 100%;
    height: auto;
    transition: 0.3s;
  }
  .title-text {
    color: white;
    font-size: 24px;
    display: none;
    transition: 0.3s;
    position: absolute;
    top:-10px;
  }
  .example-work-container:hover img{
    opacity: 0.1;
  }
  .example-work-container:hover .title-text{
     display: block;
  }

  /* NAV STYLES */

.header1 {
    margin: 40px auto 10px auto;
    display: flex;
  }
  .logo {
    margin: auto;
  }
  .header1 img {
    width: 300px;
    height: auto;
  }
  .header2 {
    margin: 30px auto 30px auto;
    display: flex;
    justify-content:center; 
  }
  .sm-icons {
    font-size: 150%;
    margin-left:5px;
  }
  .sm-icons a {
  color: #9B2832;
  margin: 5px;
  }
  .sm-icons a:hover {
    color: #656767;
  }
  #myBtnContainer {
    display: flex;
    justify-content:center; 
  }
  button {
    margin: 0 5px;
  }
  .btn {
    font-size: 50%;
    text-transform: uppercase;
  }

  /* FOOTER STYLES */

.footer {
  background-color: #656767;
}
.footer-text {
  color: white;
  text-align: center;
  font-size: 85%;
  margin: 7px 0 10px 0;
}

/* PORTFOLIO PAGES STYLES */

.portfolio-img {
  height: 400px;
}
.carousel-inner > .carousel-item > img {
  margin: 0 auto;
}
.project-description-box {
  margin-bottom: 100px;
  margin-top: 20px;
}
.project-description-box h1 {
  font-weight: bold;
  text-align: center;
  font-size: 200%;
}
.project-description-box h4 {
  /* font-style: italic; */
  text-align: center;
  font-size: 125%;
  margin-top: 10px;
  color:#A9A9A9;
}
.project-description-box h3 {
  font-weight: bold;
  font-size: 125%;
  margin-top: 10px;
}
.project-description-box .project-info {
  margin-top: 20px;
}
.project-description-box .project-date {
  font-style: italic;
  color:#A9A9A9;
}
.weblink {
  text-align: center;
}
.weblink a {
  text-align: center;
  color: #9B2832;
}
h4 {
  margin-bottom:15px;
}
