

html,
body {
       margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    --color-text: #31282d;
    --color-bg: #fcd6d9;
    --color-link: #31282d;
    --color-link-hover: rgb(224, 111, 111);
    --color-border: #c47fa1;
    --marquee-bg: #fb0434;
    --marquee-text: #fff;
    --menu-focus: #31282d;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.smooth-scroll-wrapper {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    overflow: hidden;
}

body {
    margin: 160px auto;
}


 /* Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #e06f6f #ebc5c8;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #ebc5c8;
}

*::-webkit-scrollbar-thumb {
  background-color: #e06f6f;
  border-radius: 20px;
  border: 3px solid #ebc5c8;
}


/*Selection*/
::-moz-selection { /* Code for Firefox */
  color: white;
  background: #fb365c;
}

::selection {
  color: white;
  background: #fb365c;
}



.content {
    width: 40%;
    margin: auto;
}

section {
    transition: transform 0.25s;
    will-change: transform;
}

h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}
h1.title{
    font-size: 4em;
    
    /* where the magic happens */
  background: linear-gradient(90deg, #e06f6f, #31282d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
   animation: changeColor 5s infinite;
}

@keyframes changeColor{
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 300%;
  }
  100%{
    background-position: 0% 50%;
  }
}


    
    
h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}
p {
    font-weight: normal;
    color: var(--color-text);
    font-size: 1em;
    line-height: 30px;

}
/*Links*/

 /* unvisited link */
 a:link {
    color: var(--color-link);
  }
  
  /* visited link */
  a:visited {
    color: rgb(255, 255, 255);
  }
  
  /* mouse over link */
  a:hover {
    color: var(--color-link-hover);
  }
  
  /* selected link */
  a:active {
    color: rgb(255, 197, 5);
  } 


section img {
    width: 100%;
}

div {
    margin: 0 0 70px 0;
}

/*MQ Images*/
@media screen and (max-width: 640px) {
    .content {
        width: 90%;
        margin: 160px auto;
    }
    h1.title{
        font-size: 3em;
    }
}


/*Cursor*/

.cursor {
	display: none;
}

@media (any-pointer:fine) {
	.cursor {
		position: fixed;
		top: 0;
		left: 0;
		display: block;
		pointer-events: none;
		z-index: 10000;
	}

	.cursor__inner {
		fill: none;
		stroke: #3a2932;
		stroke-width: 1px;
	}

	.no-js .cursor {
		display: none;
	}

} 
@media screen and (min-width: 480px) {
  .cursor {
    display: block;
  }
}


/* Link Style 5 */
.link5 a {
	color: black;
	background-image: linear-gradient(to bottom, transparent 65%, #f85b5b 0);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	text-decoration: none;
	transition: background-size .4s ease;
}

.link5 a:hover {
	background-size: 100% 100%;
	cursor: pointer;
}
/* Underline */
.underline {
    --line: #faa5a5;
    --color: #31282d;
    text-decoration: none;
    color: var(--color);
    position: relative;
  }
  .underline span {
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--line)), to(var(--line)));
    background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 100%);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: var(--background-size, 100%) 1px;
    -webkit-transition: background-size 0.2s linear var(--background-delay, 0.15s);
    transition: background-size 0.2s linear var(--background-delay, 0.15s);
    font-size: 16px;
    line-height: 20px;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .underline svg {
    vertical-align: top;
    display: inline;
    line-height: 1;
    width: 13px;
    height: 20px;
    position: relative;
    left: -2px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1px;
    stroke: var(--line);
    stroke-dasharray: 7.95 30;
    stroke-dashoffset: var(--stroke-dashoffset, 46);
    -webkit-transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
    transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
  }
  .underline:hover {
    --background-size: 0%;
    --background-delay: 0s;
    --stroke-dashoffset: 26;
    --stroke-duration: .3s;
    --stroke-easing: cubic-bezier(.3, 1.5, .5, 1);
    --stroke-delay: .195s;
    color: #ffa7b9;
  }