*{
    font-family: 'Poppins', sans-serif;
}
body { 
    margin: 0; 
    padding: 0; 
   } 
.name{
    margin-top: 10%;
    margin-left: 20%;
   width: fit-content;
    padding: 4px;
    border-radius: 2px;
    font-size: larger;
    background-color: aliceblue;
    display: block;
    
}
.home{
    padding: 4px ;
}
.rest{
    padding: 4px;
    position: fixed;
    right: 1%;
}
.nav{
    color:#336857;
    position: sticky;
    background-color: #1a342c;
    padding: 10px;
    display: flex;
    flex-direction: row;
}
li{
    padding: 3px;
    list-style: none;
}
a{
    color:#336857;
    text-decoration: none;
}
.foo{
    color:#336857;
    position:absolute;
    bottom: 0;
    background-color: #1a342c;
    align-items: center;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.side2{
    margin: 16px;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}
.side0{
    margin: 16px;
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    padding-left: 100px;
}
i{
    padding: 7px;
}
a:hover,i:hover{
    color: #364a44;
    cursor: pointer;
}
.side0:hover{
    cursor: default;
}
.main{
    padding: 20px;
    margin: 20px;
    border:#2d3734 solid 2px;
    background-color: #2d37347d ;
    border-radius: 10px;
    color: #75827d;
    font-size: larger;
}
.box{
    width:19ch;
    margin-left: 40%;
    animation: typing 2s steps(18), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid black;
    font-size: 20px;

}
@keyframes typing{
    from{
        width: 0;
    }
}
@keyframes blink {
    50%{
        border-color: transparent;
    }
}
.desc:hover,.box:hover{
    cursor:default;
}
.desc{
    padding-top: 4vh;
    font-size: small;
    height: 50vh;
    text-align:center;
}
.bgs{
    top: 40%;
    right: 25%;
    position: absolute;
}
.circle1{
    position: absolute;
    top: 40%;
    left: 20%;
    margin: 0px;
    animation: sqc 3s ease-in-out infinite;
    border: 4px solid #096946;
    height: 50px;
    opacity: .4;
    width: 50px;
    display: inline-block;
}
.circle2{ 
    position: absolute;
    top: 20%;
    left: 60%;
    margin: 0px;
    animation: sqc 5s ease-in-out infinite;
    border: 4px solid #8bd9bb;
    height: 90px;
    opacity: .4;
    width: 90px;
    display: inline-block;
}
@keyframes sqc{
    0% {
        border-radius: 50%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 50% 0 0 0;
        transform: rotate(45deg);
    }
    50% {
        border-radius: 0 50% 0 0;
        transform: rotate(90deg);
    }
    75% {
        border-radius: 0 0 50% 0;
        transform: rotate(135deg);
    }
    100% {
        border-radius: 50%;
        transform: rotate(180deg);
    }
    
}
.circle3{
    position:absolute;
    top:0%;
    left: 33%;
    animation: fall 1.5s forwards;
}
@keyframes fall {
    0%{
        top:0%;
        transform: rotate(0deg);
    }
    100%{
        top:75%;
        transform: rotate(360deg);
        opacity: 0%;
    }
}
.triangle {
    position: absolute;
    opacity: 0.5;
    top:65%;
    left:75%;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    animation-name: testframe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  @keyframes testframe {
  /*circle*/
    0% {
      width: 50px;
      height: 50px;
      border-color: #2c6239;
      border-radius: 50%;
    }
  /*trianle*/
    50% {
      width: 0;
      height: 0;
      background-color: transparent;
      border: 0 solid transparent;
      border-right-width: 50px;
      border-left-width: 50px;
      border-bottom: 70px solid #2c6239;
      transform: rotate(180deg);
    }
  /*square*/
    100% {
      width: 50px;
      height: 50px;
      border-color: #2c6239;
      transform: rotate(360deg);
    }
  }
.surprise{
    position:absolute;
    top:35%;
    left: 40%;
  }
#rickroll{
    font-size: large;
    height: 10vh;
    width: 40vh;
    background-color: #2d3734;
    border-radius: 8px;
    border-style:solid;
    padding: 4px;
    padding-left: 6px;
    padding-right: 6px;
    border-color: #122116;
    transition: 0.5s;
    color:#122116;
}
#rickroll:hover{
    background-color: #1a342c;
    border-color: #75827d;
    color:#75827d;
}
.inf{
    text-align: center;
}
.main2{
    padding: 40px;
    margin: 40px;
    margin-top:15vh;
    border:#2d3734 solid 2px;
    background-color: #2d37347d ;
    border-radius: 10px;
    color: #75827d;
    font-size: larger;
}