.inline {
    display: inline-block;
}
body {
	background-image: url('imatges/fons.png');
	background-repeat: repeat;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	font-family: sans-serif;
    }

.gif {
  position: center;
  left: 50%;
  width: 25%;
}

.marc {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 6px solid;
  border-image: linear-gradient(45deg, red, orange, yellow, limegreen, cyan, blue, violet, magenta) 5;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  font-size: 1.3rem;
  animation: glow 3s infinite ease-in-out;
  }
@keyframes glow {
  0% {
    border-image: linear-gradient(120deg, red, orange, yellow, limegreen, cyan, blue, violet, magenta) 1;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }
  50% {
    border-image: linear-gradient(120deg, magenta, violet, blue, cyan, limegreen, yellow, orange, red) 1;
    box-shadow: 0 0 20px rgba(255, 0, 255, 1);
  }
  100% {
    border-image: linear-gradient(120deg, red, orange, yellow, limegreen, cyan, blue, violet, magenta) 1;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }
}/*Ewige Blumenkraft*/