
/* Background  */

html, body { height: 100% }

body {
  background-color:#163b44;
  height:100%;
}

h1 {
  text-align: center;
}

canvas {
  display: block;
  position: absolute;
  top:0;
  bottom: 0;
  background:#163b44;
  position: fixed;
  z-index: -1;
}
.background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
}

/* Main Section (About me, Contact, and Portfolio */
.h2-custom {
  font-family: "Pacifico", cursive;
  color: #4aaaa5;
  text-align: center;
}

.container-cust {
  margin-bottom: 100px;
}

/* Main Site Headshot */
.img-custom1 {
        object-fit: cover;
        border-radius: 50%;
        width: 250px;
        height: 250px;
}
/* Portfolio Boxes */
.tnport {
  position: relative;
  width: 100%;
  height: 100%;
}
#aboutMe{
  animation-name: slide-up; 
  animation-duration: 1s;
}
#contact{
  animation-name: slide-up; 
  animation-duration: 1s;
}
#port{
  animation-name: slide-up; 
  animation-duration: 1s;
}
.welcome{
    animation-name: slide-up; 
    animation-duration: 1s;
}

.sp1 {
  position: absolute;
  background-color: #4aaaa5;
  height: 50px;
  top: 70%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-custom {
  width: 100%;
  position: relative;
}

/* Contact Page */

.img-custom2 {
    object-fit: cover;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.btn-custom {
  background-color: #4aaaa5;
  color: white;
  padding-bottom: 20px;
  padding-top: 20px;
  border: 1px solid #4aaaa5;
  animation-name: slide-up; 
  animation-duration: 1s;
  overflow: hidden;
  position: relative;
}
.btn-custom span {
  z-index: 20;
}
.btn-custom:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}

.btn-custom:hover:after {
  left: 120%;
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes slide-up {
  0% {
      opacity: 0;
      transform: translateY(20px);
      animation: reverse;
  }
  100% {
      opacity: 1;
      transform: translateY(0);
      animation: reverse;
  }
}


/* Sticky Footer  */
.footer1 {
  width: auto;
  max-width: 680px;
  padding: 0 15px;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 50px;
  background-color: #666666;
  border-top: 10px solid #4aaaa5;
  text-align: center;
}

.footerText{
    font-family: 'Pacifico', cursive;
}


/*------------------------
    HIDE CLASS
---------------------------*/

.hide {
    display: none;
  }
  
.tnlink{
  color: #f6f6f6;
  text-decoration: none;
}

.tnlink:hover{
  color: #666666;
  text-decoration: none;
}
.contactlink{
  color:#4aaaa5;
  text-decoration: none;
  font-family: "Pacifico", cursive;
}

.contactlink:hover{
  color: #666666;
  text-decoration: none;
  font-family: "Pacifico", cursive;
}

.contactp{
  text-align: center;
}

