body {
    background-color:#404040;
}
@keyframes anime1 {
  0% {
            transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
            transform: scale(1);
            transform: scale(1);
  }
}

h2 {
	color: white;
    font-family:"Fira Sans", sans-serif;
    border: solid 5px;
    text-align: center;
    font-size: 50px;
    border-image: linear-gradient(355deg, 
     #59c173, #a17fe0, #5d26c1);
    border-image-slice: 1;
    animation: anime1 1s;
}
p {
    font-family:"Fira Sans", sans-serif;
    color: #1ffff5;
    font-size: 35px;
    padding: 20px;
    padding-left: 50px
}
ul {
    padding: 20px;
    padding-left: 10%;
    font-size: 25px;
    color: white;
    list-style-type: hiragana;
    font-family: "Fira Sans", sans-serif;
}

img {
    width: 250px;
    padding-left: 20px;
    animation: anime1 0.5s;
}
@keyframes anime {
	from {
		color: #1ffff5;
	}
	50% {
		color: #00ff8b
	}
	to {
		color: #815bf7;
	}
}
a {
    text-decoration: none;
    color: #1ffff5;
  
}
a:hover {
    color: #815bf7;
    animation: anime 1s infinite alternate;
}
a:visited {
    color: #815bf7;
}
.retour {
    font-size: 30px;
    font-family:"Fira Sans", sans-serif;
    animation: anime 1s infinite alternate;
}