html, body {
  font-family: 'Sriracha', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

.container-fluid {
display: block;
grid-template-columns: 1fr;
margin: 0;
padding: 0;
}

/* Nav Styles */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 38px;
}

.left-side {
  display: flex;
}

.brand {
  color: black;
  font-weight: 600;
  text-shadow: 2px 2px white;
}

.nav-wrapper > .left-side > div{
  margin-right: 20px;
  font-size: 0.9em;
  text-transform: uppercase;
}

.nav-link-wrapper {
  height: 22px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
  color: black;
  text-decoration: none;
  transition: color 0.5s;
}

.nav-link-wrapper:hover {
  border-bottom: 1px solid black;
}


.nav-link-wrapper a:hover {
  color: black;
}

.active-nav-link {
  border-bottom: 1px solid black;
}

.active-nav-link a {
  color: black !important;
}
/* Portfolio styles */
.portfolio-items-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 1000px) {
  .portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/*----Item wrapper styling----*/
.left-item-wrapper {
position: relative;
}

.center-item-wrapper {
position: relative;
}

.right-item-wrapper {
position: relative;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}
/* Left item wrapper styles */
.left-item-wrapper .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.left-item-wrapper:hover .overlay {
  bottom: 0;
  height: 100%;
}

.left-item-wrapper .text {
color: white;
font-size: 40px;
font-weight: 600;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
text-shadow: 2px 2px black;
}

@media only screen and (min-width: 1000px){
  .left-item-wrapper .text {
    font-size: 25px;
    text-shadow: 2px 2px gold;
  }
}
/* Center item wrapper styles */
.center-item-wrapper .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.center-item-wrapper:hover .overlay {
  bottom: 0;
  height: 100%;
}

.center-item-wrapper .text {
color: white;
font-size: 40px;
font-weight: 600;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
text-shadow: 2px 2px black;
}

@media only screen and (min-width: 1000px){
  .center-item-wrapper .text {
    font-size: 25px;
    text-shadow: 2px 2px gold;
  }
}
/* Right item wrapper styles */
.right-item-wrapper .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.right-item-wrapper:hover .overlay {
  bottom: 0;
  height: 100%;
}

.right-item-wrapper .text {
color: white;
font-size: 40px;
font-weight: 600;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
text-shadow: 2px 2px black;
}

.text a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 1000px){
  .right-item-wrapper .text {
    font-size: 25px;
    text-shadow: 2px 2px gold;
  }
}
/* About Page Styles */
.two-column-wrapper {
  display: grid;
}

.profile-image-wrapper img {
  display: block;
  width: 800px;
  height: 580px;
  margin-left: auto;
  margin-right: auto;
}

.profile-content-wrapper {
  padding: 30px;
}

.profile-content-wrapper h1 {
  color: lightseagreen;
  text-align: center;
  font-size: 40px;
}

.profile-content-wrapper h2 {
  color: lightseagreen;
  text-align: center;
  font-size: 35px;
}

.profile-content-wrapper p {
  width: auto;
  height: auto;
  font-size: 25px;
  text-align: center;
}
