@media (min-width: 600px) {
  h1 {
    margin: 100px;
    font-size: 50px;
  }

  .title {
    animation-name: h1Animation;
    animation-duration: 2s;
    animation: h1Animation 6s linear infinite;
}
}

body {
    background: 
    linear-gradient(to bottom, rgb(0, 0, 0), rgb(44, 17, 44)),
    #123;
    font-family: Arial, sans-serif;

    display: flex;
    flex-direction: column;
    margin:0;
	height:100vh;
	align-items:center;
    justify-content: center;
}

@keyframes h1Animation {
  0%  {color: plum;}
  30%  {color: rebeccapurple;}
  50%  {color: orangered;}
  70%  {color: rebeccapurple}
  100%  {color: plum}
}

.title {
    margin: 50px;
    color: plum;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.linktree {
    display: flex;
    margin:0;
	height:100vh;
	align-items:center;
    justify-content: start;
}

.linktree-item {
    margin: 10px;
    padding: 15px;
    background-color: rgb(255,255,255, 0.8);
    border-radius: 5px;
}

.linktree a {
    text-decoration: none;
    color: palevioletred;
    font-weight: bold ;
}
