@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

html,
body
{
    font-family: 'Poppins';
    background: rgb(24,24,24);
    margin: 0px;
    padding: 0px;
}

body {
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    width: max-content;
    mix-blend-mode: exclusion;
    background: rgb(24,24,24);
}

::-moz-selection { /* Code for Firefox */
    color: rgb(255, 115, 0);
    background: none;
}
  
::selection {
    color: rgb(255, 115, 0);
    background: none;
}

a {
    text-decoration: none;
    color: black;
}

i:hover {
    color: rgb(255, 115, 0);
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
  }

.container {
    height: 100vh;
    display: grid;
    place-items: center;
}

h1 {
    font-size: 550%;
    text-transform: uppercase;
    color: black;
    text-align: center;
}

.work-exp h1, h2, h3, p {
    color: white;
    padding: 0px;
    margin: 0px;
}

.work-exp h1{
    color: white;
    text-align: left;
}

.work-exp{
    height: 95vh;
    width: max-content;
    padding: 100px 0px 0px 50px;
    margin: 0px 0px 0px 0px;
    color: white;
    background: rgb(24,24,24);
}

.work-exp .content{
    height: 95vh;
    width: 60%;
}

.projects {
    height: 95vh;
    padding: 100px 0px 0px 50px;
    margin: 0px 0px 0px 0px;
    background: rgb(24,24,24);
    text-align: center;
    background-blend-mode: overlay;

}

.projects h1{
    color: white;
    text-align: center;
    margin-bottom: -20px;
    padding-bottom: 0px;
}

.projects a {
    list-style-type: none;
    color: white;
    display: inline-table;
    padding: 0px 18px 0px 18px;
}

.projects p {
    color: white;
    margin-top: 600px;
}

.name {
    font-size: 7rem;
    color: white;
}

.section{
    height: 100vh;
    padding: 0px 20px 0px 20px;
    display: grid;
    place-items: center;
    text-align: center;
    position: absolute;  
    background-image: url("https://cdn.dribbble.com/users/119530/screenshots/3433250/comp4.gif");
    background-blend-mode: overlay;
    opacity: .91;
    background-color: #f5f5f5;
}

.social-icons {
    padding-top: 0px;
    margin-top: 0px;
}

.social-icons i{
    padding: 50px;
}


h4 {
    position: fixed;
    right: 48%;
    bottom: 0px;
    text-align: center;
    text-shadow: 2px 2px 5px black;
    color: white;
    padding-top: 16px;
}
  
.arrows {
    width: 60px;
    height: 72px;
    position: fixed;
    right: 48%;
    bottom: 60px;
    padding-bottom: 16px;
}
  
.arrows path {
    stroke: white;
    fill: transparent;
    stroke-width: 1px;	
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}
  
  @keyframes arrow
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
.arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; /* Safari 和 Chrome */
}
  
.arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}
  
.arrows path.a3 {	
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
}
