@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Skranji:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
	background: linear-gradient(-45deg, #E7C6BD, #ffffff, #FBDCD9, #ffffff);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100%;
}

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

main {
    flex: 1;
    position: relative;
}

.w1 {
    stroke: none;
    fill: #b3696c;
    opacity: 55%;
    animation: move1 10s ease-in-out infinite;
  }
  .w2 {
    stroke: none;
    fill: #b3696c;
    opacity: 35%;
    transform: translate3d(0, 0, 0);
    animation: move2 8s ease-in-out infinite;
  }
  .w3 {
    stroke: none;
    fill: #B58782;
    opacity: 30%;
    transform: translate3d(0, 0, 0);
    animation: move3 12s ease-in-out infinite;
  }
  @keyframes move1 {
    0% {
      transform: translateX(-500px) scaleX(2.5);
    }
    25% {
      transform: translateX(-100) scaleX(2.5);
    }
    50% {
      transform: translateX(0) scaleX(2.5);
    }
    75% {
      transform: translateX(-100) scaleX(2.5);
    }
    100% {
      transform: translateX(-500px) scaleX(2.5);
    }
  }
  @keyframes move2 {
    0% {
      transform: translateX(-600px) scaleX(3);
    }
    25% {
      transform: translateX(-100) scaleX(2.5);
    }
    50% {
      transform: translateX(0) scaleX(3);
    }
    75% {
      transform: translateX(-100) scaleX(2.5);
    }
    100% {
      transform: translateX(-600px) scaleX(3);
    }
  }
  @keyframes move3 {
    0% {
      transform: translateX(-800px) scaleX(3);
    }
    25% {
      transform: translateX(-100) scaleX(2.5);
    }
    50% {
      transform: translateX(0) scaleX(3);
    }
    75% {
      transform: translateX(-100) scaleX(2.5);
    }
    100% {
      transform: translateX(-800px) scaleX(3);
    }
  }



h1 {
    display: none;
}

.logo {
    width: 10rem;
    position: relative;
    z-index: 2;
}

figure {
    position: relative;
    z-index: 2;
    margin: 1rem;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
}

.link {
    text-decoration: none;   
    color: #B58782;
    position: relative; 
    display: block;
    text-align: center;
    margin: 1.5rem auto;
    background: white;
    border: solid 1px pink;
    width: 16rem;
    padding: 0.8rem;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 1px pink;
}

.link:hover {
    animation: expand 300ms ease;
    /* transform: translateY(-6px); */
    transform: translateY(-6px);
    box-shadow: 2px 2px 10px gray;
}

.links {
    margin: 2rem 0 0 0;
}


@keyframes expand {
    0% {
        box-shadow: 1px 1px 2px gray;
        transform: translateY(-2px);
    }

    100% {
        box-shadow: 2px 2px 10px gray;
        transform: translateY(-6px);
    }
}
