* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
  
html, body {
  min-height: 100vh;
  /* background: #fff; */
}
#container {
  position: relative;
  margin-bottom: 0;
  min-height: 100vh;
}
/* #maincontent {
 
} */
body {
  padding-top: 80px;
}
.nowrap {
  white-space: nowrap;
}
.under-line {
  text-decoration: underline;
}


.navbar  {
  height: 80px;
  background-color: #000;
  position: fixed;
  top: 0; 
  width:100vw;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-link {
font-size: 20px;
font-weight: bold;
text-decoration: none;
color: #fff;
padding: 20px;
}
.current, .navbar-link:active {
  color: rgb(117, 163, 117);
}
.navbar-link:hover{color: rgb(117, 163, 117);}
.navbar-link-left {margin-right: 20px;}
.navbar-link-right { margin-left: 20px;}
.navbar-circle-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #dddddd;
    overflow: hidden;
    object-fit: contain;
}



.main-section {
  height: 50vh;
  background-color: #000;
  margin: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*push beyond animation*/
.animated-text {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  overflow: visible;
  white-space: nowrap;
  animation: grow 2s ease-in-out forwards;
}
.animated-text span {
  display: inline-block;
}
@keyframes grow {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(3.5);
  }
  to {
    transform: scale(1.5);
  }
}
.first-word {
  display: inline-block;
  animation: move-left 3s ease-in-out;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
@keyframes move-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200px);
  }
}




.about-section {
height: auto;
margin: 0.5em 1em;
display: flex;
flex-wrap: nowrap;
}
.section {
align-items: center;
justify-content: center;
color: #fff;
background-color: #000;
width: 33%;
padding: 10px;
opacity: 0;
animation-duration: 1s;
animation-fill-mode: forwards;
font-family: 'Roboto', sans-serif;
font-size: 1em;
}
.past {
animation-name: fade-in;
animation-delay: 0s;
}
.past .text {
text-align: justify;
}
.past h2 {
text-align: center;
}
.text-basics {
text-align: justify;
margin-left: 1em;
}
.present {
animation-name: fade-in;
animation-delay: 1s;
}
.future {
animation-name: fade-in;
animation-delay: 2s;
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
.section img {
max-width: 100%;
height: auto; 
display: block;
margin-top: 2em;
margin-bottom: 1em;
}
.section .text {
padding: 1em;
text-align: center;  
}
li {
list-style-type:none;
}
#clip-dude {
font-size: xx-large;
}
    
  /*FAILs */
.fail {
position: relative;
text-decoration: none;
}
.fail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: red;
  animation: strikethrough 1s ease-out infinite;
}
@keyframes strikethrough {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
  100% {
    transform: translateY(-7px);
  }
}

  
  /*On a thirst for authentic animation */
  .authentic-ani {
    font-size: 30px;
    background-color: #fff;
    color: #000;
    
  }
  .text-animation {
    position: absolute;
    opacity: 0;
    transition: all 0.5s show-text;
  }
/*   .text-animation:nth-child(1) {
    animation: show-text 2s 4s;
    margin-left: 20px;
  } */
  .text-animation:nth-child(2) {
    animation: show-text 2s 4s;
    margin-left: 160px;
  }
  .text-animation:nth-child(3) {
    animation: show-text 2s 6s;
    margin-left: 160px;
  }
  .text-animation:nth-child(4) {
    animation: show-text 2s 8s;
    margin-left: 160px;
  }
/*   .text-animation:nth-child(5) {
    animation: show-text 2s 10s;
    margin-left: 110px;
  } */
  @keyframes show-text {
    0% {
      opacity: 0;
      transform: translateX(-50%);
    }
    10% {
      opacity: 1;
      transform: translateX(-50%);
    }
    90% {
      opacity: 1;
      transform: translateX(-50%);
    }
    100% {
      opacity: 0;
      transform: translateX(-50%);
    }
  }
  .living-ani {
    opacity: 0;
    animation-name: fadeIn;
    animation-delay: 10s;
    animation-fill-mode: forwards;
    margin-left: 110px;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .do-the-math {
    background-color: #fff;
    color: #000;
    text-align: center;
  }


  
  .checklist-ani {
    position: absolute;
    opacity: 0;
    background-color: red;
  }
  
  .checklist-ani:nth-child(1) {
    animation: show-text 4s, 12s infinite;
    animation-delay: 0s;
    margin-left: 50px;
  }
  
  .checklist-ani:nth-child(2) {
    animation: show-text 4s;
    animation-delay: 4s; 
    margin-left: 45px; 
  }
  
  .checklist-ani:nth-child(3) {
    animation: show-text 4s;
    animation-delay: 8s; 
    margin-left: 30px; 
  }
  
  @keyframes show-text {
    0% {
      opacity: 0;
      transform: translateX(-50%);
    }
    10% {
      opacity: 1;
      transform: translateX(-50%);
    }
    90% {
      opacity: 1;
      transform: translateX(-50%);
    }
    100% {
      opacity: 0;
      transform: translateX(-50%);
    }
  }
  
   

  
 




  .work-section {
    height: auto;
    background-color: #000 ;
    margin: 0.5em 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    display:block;
    color: #fff;
  }
  .work-section a {
    text-decoration: none;
    color: #fff;
  }
  #download-img {
    font-size: 2em;
  }
  details {
    border: 1px solid #aaa;
    padding: 0.5em 0.5em ;
    color: #fff;
    font-size: 1em;
  
    }
    details p {
      font-size: 20px;
    }
    summary {
        font-weight: bold;
        margin: -0.5em -0.5em 0;
        padding: 0.5em;
        height: 2em;
        font-size: 2em;
    }
    details[open] {
        padding: 0.5em;
    }

    details[open] summary {
        border-bottom: 1px solid #aaa;
        margin-bottom: 0.5em;
    }


  


  .main-blog-content {
    height:auto;
    background-color: #fff;
    margin-top: 0.5em;
    padding: 1em;
  }
  .blog-header-img {
  height: 1em;
}
.message-box {
    background-color: rgb(187, 208, 187);
    border: 1px solid #999;
    border-radius: 4px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
 /*    height: 25em; */
    margin: 1em;
    padding: 1em;
    max-height: fit-content;
    min-height: fit-content;
  
  }
  .message-box-header {
    background: rgb(117, 163, 117);
    border: 1px solid #fff;
    color: #fff;
    margin: 0.5em;
    padding: 0.5em; 
  }
  .message-box-title {
    font-size: 1.2em;
    font-weight: bold;
  }
  .message-box-content {
   /*  height: 15em; */
    margin: 1em;
    overflow-y: scroll;
    padding: 1em;
    max-height: 30em;
    min-height: 15em;
    background-color: rgba(117, 163, 117, 0.181);
    
  }
  .message-box:not(:last-child) {
    margin-bottom: 1em;
  }
  .message-box-date {
    font-size: 0.8em;
    margin-left: 1em;
    color: #666;
  }
  




  .main-hobbies-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
  }
  @keyframes dance {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(10px, -10px);
    }
    50% {
      transform: translate(0, 0);
    }
    75% {
      transform: translate(-30px, 30px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .main-hobbies-section h1 {
    color: #000;
    font-size: 72px;
    animation: dance 2s infinite;
  }
  


#footer {
color: #000;
height: auto;
overflow: hidden;
position: relative;
}


/*RESPONSIVE*/

  @media screen and (max-width: 768px) {

    .main-section {
      height: 80vh;
      background-color: #000;
      margin: 0.5em 1em 0 1em;
      display: flex;
      justify-content: center;
      align-items: center;
    }
       /*push beyond animation*/
    .animated-text {
      font-size: 2.5em;
      font-weight: bold;
      color: #fff;
      text-align: center;
      overflow: visible;
      white-space: nowrap;
      animation: grow 2s ease-in-out forwards;
    }
     
    .first-word {
      display: inline-block;
      animation: move-left 3s ease-in-out;
      animation-delay: 2s;
      animation-fill-mode: forwards;
    }
    @keyframes move-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-90px);
      }
    }
  
    .about-section {
      height: auto;
      margin: 0.5em 1em;
      display: flex;
      flex-direction: column;
      /* flex-wrap: nowrap; */
    }
    .section {
      align-items:center;
      justify-content: center;
      color: #fff;
      background-color: #000;
      width: 95%; 
      margin-top: 1em;
      padding: 10px;
      opacity: 0;
      animation-duration: 1s;
      animation-fill-mode: forwards;
    }
    .section img {
      margin-left: 4em;
    }
    .text-basics {
      text-align: justify;
      margin-left: 11em;
    }
    .authentic-ani {
      font-size: 30px;
      background-color: #fff;
      color: #000;
      text-align: center;
      
    }
  /*   .text-animation:nth-child(1) {
      margin-left: 20px;
    } */
    .text-animation:nth-child(2) {
      margin-left: 100px;
    }
    .text-animation:nth-child(3) {
      margin-left: 100px;
    }
    .text-animation:nth-child(4) {
      margin-left: 100px;
    }
/*     .text-animation:nth-child(5) {
      margin-left: 110px;
    } */
    .living-ani {
      margin-left: 50px;
    }


    .work-section {
      height: auto;
      background-color: #000 ;
      margin: 0.5em 2em 0.5em 1em;
      padding: 1em;
      display:block;
      color: #fff;
    }

  }

  


  @media screen and (max-width: 640px) {

    .navbar-link {
      padding: 5px;
      }
    .main-section {
      height: 80vh;

    }
       /*push beyond animation*/
    .animated-text {
      font-size: 2em;
    }
     
    .first-word {
      display: inline-block;
      animation: move-left 3s ease-in-out;
      animation-delay: 2s;
      animation-fill-mode: forwards;
    }
    @keyframes move-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-40px);
      }
    }
    .second-word {
      display: inline-block;
      animation: move-right 3s ease-in-out;
      animation-delay: 2s;
      animation-fill-mode: forwards;
    }
    @keyframes move-right {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(30px);
      }
    }


    .about-section {
      flex-direction: column;
      /* flex-wrap: nowrap; */
    }
    .section {
      width: 92%; 
      margin-top: 1em;
    }
    .future{
      width: 95%
    }
    .section img {
      margin-left: .15em;
    }
    .text-basics {
      text-align: justify;
      margin-left: 3em;
    }
  
  /*   .text-animation:nth-child(1) {
      margin-left: 20px;
    } */
    .text-animation:nth-child(2) {
      margin-left: 60px;
    }
    .text-animation:nth-child(3) {
      margin-left: 60px;
    }
    .text-animation:nth-child(4) {
      margin-left: 60px;
    }
/*     .text-animation:nth-child(5) {
      margin-left: 110px;
    } */
    .living-ani {
      margin-left: 10px;
    }

    .work-section {
      width: 85%;
    }

    summary {
        font-size: 1em;
    }
    
  }



  @media screen and (max-width: 480px) {

    .navbar-link {
      padding: 5px;
      }
    .main-section {
      height: 80vh;

    }
       /*push beyond animation*/
    .animated-text {
      font-size: 2em;
    }
     
    .first-word {
      display: inline-block;
      animation: move-left 3s ease-in-out;
      animation-delay: 2s;
      animation-fill-mode: forwards;
    }
    @keyframes move-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-10px);
      }
    }
    .second-word {
      display: inline-block;
      animation: move-right 3s ease-in-out;
      animation-delay: 2s;
      animation-fill-mode: forwards;
    }
    @keyframes move-right {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(30px);
      }
    }


    .about-section {
      flex-direction: column;
      /* flex-wrap: nowrap; */
    }
    .section {
      width: 92%; 
      margin-top: 1em;
    }
    .future{
      width: 95%
    }
    .section img {
      margin-left: .15em;
    }
    .text-basics {
      text-align: justify;
      margin-left: 1em;
    }
  
  /*   .text-animation:nth-child(1) {
      margin-left: 20px;
    } */
    .text-animation:nth-child(2) {
      margin-left: 60px;
    }
    .text-animation:nth-child(3) {
      margin-left: 60px;
    }
    .text-animation:nth-child(4) {
      margin-left: 60px;
    }
/*     .text-animation:nth-child(5) {
      margin-left: 110px;
    } */
    .living-ani {
      margin-left: 10px;
    }

    .work-section {
      width: 85%;
    }

    summary {
        font-size: 1em;
    }

  
  