/*
Fonts
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200&display=swap');

html {
    overflow: hidden;
    height: 100%;
}
body{
    overflow-x: auto;
    height: 100%;
    margin:0;
    
    font-family: 'Poppins', sans-serif;
    color:aliceblue;

    background-image: url('Images/Background2.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    padding:0;
    margin:0;
    position: relative;
    
}

                                            /* NavBar */
/* Profile */
.Profile{
    float: left;
    width:  40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
/* Links: */
a {
    color: black;

}

a:visited {
    color: initial;
}

a:hover {
    color: initial;
}

a:active {
    color: initial;
}


.card {
    border-color: transparent;
    max-width: 500px;
    margin: auto;
    margin-top: 150px;
    text-align: center;
    background-color: transparent;
}
.Me{
    margin-left: 25%;
    margin-top: 15px;
    width:  260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border-width: 2px;
    border-color: black;

}
  
.description {
    color: aquamarine;
    font-size: 14px;
    text-align: center;
}
  
a {
    text-decoration: none;
    font-size: 22px;
}

.name {
    position: relative;
  }
.name span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    animation: flip 5s infinite;
    animation-delay: calc(.15s * var(--i))
  }
  @keyframes flip {
    0%,80% {
      transform: rotateY(360deg) 
    }
  }

.description {
  font-family: "Montserrat Medium";
  transform: scale(0.94);
  animation: scale 5s alternate cubic-bezier(0.5, 1, 0.89, 1) infinite;
}
  @keyframes scale {
    100% {
      transform: scale(1);
    }
}
  
.description span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}
  
.description span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(9) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(10) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(11) {
  animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(12) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.description span:nth-child(13) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  

  
  @keyframes fade-in {
    100% {
      opacity: 1;
      filter: blur(0);
    }
  }
  

.quotation{
  font-size: 30px;
  quotes: "\201C""\201D""\2018""\2019";
  padding: 10px 20px;
  line-height: 1.4;
  font-family: 'Inconsolata', monospace;
}
  
.quotation:before {
  content: open-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: -10px;
  position: relative;
  top: 30px;
  color: aliceblue; opacity:0.6;
  font-size: 3em;
}
.quotation::after {
  content: close-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: 10px;
  position: relative;
  top: 35px;
  color: black; opacity:0.6;
  font-size: 3em;
}




.hello {
  transform: translateX(-50%) translateY(-50%);
}

.hello:before,
.hello:after {
  content: '';
  padding: .9em .4em;
  position: absolute;
  left: 50%;
  width: 50%;
  top: 50%;
  display: block;
  border: 15px solid turquoise;
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  animation: 10s infinite alternate ease-in-out tipsy;
}

.hello:before {
  border-color: #4ad9bf #4ad9bf rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  z-index: -1;
}

.hello:after {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #4ad9bf #4ad9bf;
}

@keyframes tipsy {
  0 {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}
