* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--background-color);
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	padding-bottom: 50px;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	min-height: fill-available;
	gap: 100px;
}

html {
	height: -webkit-fill-available;
	height: fill-available;
}



.section1 {
	display: block;
    margin-top: 35vh;
}

.typing {
	height: 50px;
	display: inline-flex;
	flex-direction: column;
	line-height: 50px;
	overflow: hidden;
	--no-of-words: 4;
	--time: 2s;
}

.typing li {
	list-style: none;
	position: relative;
	text-align: left;
	top: 0;
	animation: changeWord calc(var(--no-of-words) * var(--time))
		steps(var(--no-of-words)) infinite;
}

@keyframes changeWord {
	100% {
		top: calc(-100% * var(--no-of-words));
	}
}

.typing li span {
	position: relative;
}

.typing li span::after {
	content: "";
	position: absolute;
	background-color: var(--background-color);
	left: 0;
	height: 100%;
	width: 100%;
	border-left: 2px solid;
	animation: typing var(--time) steps(11) infinite;
}

@keyframes typing {
	50% {
		left: 100%;
	}

	70% {
		left: 100%;
	}
}

@media screen and (min-width: 600px) {
	body {
		padding: 0 15vw;
		padding-bottom: 50px;
	}
}

/* Header */
.large-header {
    position: relative;
    width: 100%;
    background: #333;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
  }
  
  #large-header {
    background-image: url('https://www.marcoguglie.it/Codepen/AnimatedHeaderBg/demo-1/img/demo-1-bg.jpg');
  }
  
  .main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #f9f1e9;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
  }
  
  .demo-1 .main-title {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
  }
  
  .main-title .thin {
    font-weight: 200;
  }
  
  @media only screen and (max-width : 768px) {
    .demo-1 .main-title {
      font-size: 3em;
    }
  }

.cursor{
    z-index: 999;
    position: fixed;
    background: #150050;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 20px #3F0071,
                0 0 60px #3F0071,
                0 0 100px #3F0071;
     
}

@keyframes colors{
    0%{
        filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg);
    }
}


.cursor::before{
    content:'';
    position: absolute;
    background: #150050;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    transform: translate(-30%, -30%);
    border-radius: 50%;
}

.button{
    transition: transform 250ms;
}

.button:hover{
    color: #F05454;
    transform: translateY(-10px);
}

ul {
    list-style-type: none;
    margin: 1vw;
    padding: 0;
    overflow: hidden;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: inline;
    color: #F05454;
    text-align: center;
    padding:0px 16px;
    text-decoration: none;
  }
  